Chromium Code Reviews| 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 namespace { | |
| 13 | |
| 14 static base::LazyInstance<PreviewsServiceFactory> g_previews_factory = | |
|
Lei Zhang
2016/09/08 21:31:57
no need for static inside anonymous namespace.
RyanSturm
2016/09/08 22:18:26
Done.
| |
| 15 LAZY_INSTANCE_INITIALIZER; | |
| 16 | |
| 17 } // namespace | |
| 18 | |
| 19 // static | |
| 20 PreviewsService* PreviewsServiceFactory::GetForProfile(Profile* profile) { | |
| 21 DCHECK_NE(profile->GetProfileType(), Profile::INCOGNITO_PROFILE); | |
| 22 return static_cast<PreviewsService*>( | |
| 23 GetInstance()->GetServiceForBrowserContext(profile, true)); | |
| 24 } | |
| 25 | |
| 26 // static | |
| 27 PreviewsServiceFactory* PreviewsServiceFactory::GetInstance() { | |
| 28 return g_previews_factory.Pointer(); | |
| 29 } | |
| 30 | |
| 31 PreviewsServiceFactory::PreviewsServiceFactory() | |
| 32 : BrowserContextKeyedServiceFactory( | |
| 33 "PreviewsService", | |
| 34 BrowserContextDependencyManager::GetInstance()) {} | |
| 35 | |
| 36 PreviewsServiceFactory::~PreviewsServiceFactory() {} | |
| 37 | |
| 38 KeyedService* PreviewsServiceFactory::BuildServiceInstanceFor( | |
| 39 content::BrowserContext* context) const { | |
| 40 return new PreviewsService(); | |
| 41 } | |
| OLD | NEW |