OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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. |
| 4 |
| 5 #include "chrome/browser/previews/previews_service_factory.h" |
| 6 |
| 7 #include "chrome/browser/previews/previews_service.h" |
| 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| 10 #include "content/public/browser/browser_context.h" |
| 11 |
| 12 // static |
| 13 PreviewsService* PreviewsServiceFactory::GetForProfile(Profile* profile) { |
| 14 DCHECK_NE(profile->GetProfileType(), Profile::INCOGNITO_PROFILE); |
| 15 return static_cast<PreviewsService*>( |
| 16 GetInstance()->GetServiceForBrowserContext(profile, true)); |
| 17 } |
| 18 |
| 19 // static |
| 20 PreviewsServiceFactory* PreviewsServiceFactory::GetInstance() { |
| 21 return base::Singleton<PreviewsServiceFactory>::get(); |
| 22 } |
| 23 |
| 24 PreviewsServiceFactory::PreviewsServiceFactory() |
| 25 : BrowserContextKeyedServiceFactory( |
| 26 "PreviewsService", |
| 27 BrowserContextDependencyManager::GetInstance()) {} |
| 28 |
| 29 PreviewsServiceFactory::~PreviewsServiceFactory() {} |
| 30 |
| 31 KeyedService* PreviewsServiceFactory::BuildServiceInstanceFor( |
| 32 content::BrowserContext* context) const { |
| 33 return new PreviewsService(); |
| 34 } |
OLD | NEW |