1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/thumbnails/thumbnail_service_factory.h"
7 #include "base/logging.h"
8 #include "chrome/browser/thumbnails/thumbnail_service.h"
9 #include "chrome/browser/thumbnails/thumbnail_service_impl.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
12 using thumbnails::ThumbnailService
;
13 using thumbnails::ThumbnailServiceImpl
;
15 ThumbnailServiceFactory::ThumbnailServiceFactory()
16 : RefcountedBrowserContextKeyedServiceFactory(
18 BrowserContextDependencyManager::GetInstance()) {
21 ThumbnailServiceFactory::~ThumbnailServiceFactory() {
25 scoped_refptr
<ThumbnailService
> ThumbnailServiceFactory::GetForProfile(
27 return static_cast<ThumbnailService
*>(
28 GetInstance()->GetServiceForBrowserContext(profile
, true).get());
32 ThumbnailServiceFactory
* ThumbnailServiceFactory::GetInstance() {
33 return Singleton
<ThumbnailServiceFactory
>::get();
36 scoped_refptr
<RefcountedBrowserContextKeyedService
>
37 ThumbnailServiceFactory::BuildServiceInstanceFor(
38 content::BrowserContext
* profile
) const {
39 return scoped_refptr
<RefcountedBrowserContextKeyedService
>(
40 new ThumbnailServiceImpl(static_cast<Profile
*>(profile
)));