Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: chrome/browser/previews/previews_service_factory.cc

Issue 2733283002: Require explicit selection of traits for LazyInstance (Closed)
Patch Set: l10n again Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/previews/previews_service_factory.h" 5 #include "chrome/browser/previews/previews_service_factory.h"
6 6
7 #include "chrome/browser/previews/previews_service.h" 7 #include "chrome/browser/previews/previews_service.h"
8 #include "chrome/browser/profiles/profile.h" 8 #include "chrome/browser/profiles/profile.h"
9 #include "components/keyed_service/content/browser_context_dependency_manager.h" 9 #include "components/keyed_service/content/browser_context_dependency_manager.h"
10 #include "content/public/browser/browser_context.h" 10 #include "content/public/browser/browser_context.h"
11 11
12 namespace { 12 namespace {
13 13
14 base::LazyInstance<PreviewsServiceFactory> g_previews_factory = 14 base::LazyInstance<PreviewsServiceFactory>::DestructorAtExit
15 LAZY_INSTANCE_INITIALIZER; 15 g_previews_factory = LAZY_INSTANCE_INITIALIZER;
16 16
17 } // namespace 17 } // namespace
18 18
19 // static 19 // static
20 PreviewsService* PreviewsServiceFactory::GetForProfile(Profile* profile) { 20 PreviewsService* PreviewsServiceFactory::GetForProfile(Profile* profile) {
21 return static_cast<PreviewsService*>( 21 return static_cast<PreviewsService*>(
22 GetInstance()->GetServiceForBrowserContext(profile, true)); 22 GetInstance()->GetServiceForBrowserContext(profile, true));
23 } 23 }
24 24
25 // static 25 // static
26 PreviewsServiceFactory* PreviewsServiceFactory::GetInstance() { 26 PreviewsServiceFactory* PreviewsServiceFactory::GetInstance() {
27 return g_previews_factory.Pointer(); 27 return g_previews_factory.Pointer();
28 } 28 }
29 29
30 PreviewsServiceFactory::PreviewsServiceFactory() 30 PreviewsServiceFactory::PreviewsServiceFactory()
31 : BrowserContextKeyedServiceFactory( 31 : BrowserContextKeyedServiceFactory(
32 "PreviewsService", 32 "PreviewsService",
33 BrowserContextDependencyManager::GetInstance()) {} 33 BrowserContextDependencyManager::GetInstance()) {}
34 34
35 PreviewsServiceFactory::~PreviewsServiceFactory() {} 35 PreviewsServiceFactory::~PreviewsServiceFactory() {}
36 36
37 KeyedService* PreviewsServiceFactory::BuildServiceInstanceFor( 37 KeyedService* PreviewsServiceFactory::BuildServiceInstanceFor(
38 content::BrowserContext* context) const { 38 content::BrowserContext* context) const {
39 return new PreviewsService(); 39 return new PreviewsService();
40 } 40 }
OLDNEW
« no previous file with comments | « chrome/browser/previews/previews_service_factory.h ('k') | chrome/browser/printing/print_view_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698