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

Side by Side Diff: chrome/browser/supervised_user/legacy/supervised_user_shared_settings_service_factory.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/supervised_user/legacy/supervised_user_shared_settings_ service_factory.h" 5 #include "chrome/browser/supervised_user/legacy/supervised_user_shared_settings_ service_factory.h"
6 6
7 #include "chrome/browser/supervised_user/legacy/supervised_user_shared_settings_ service.h" 7 #include "chrome/browser/supervised_user/legacy/supervised_user_shared_settings_ service.h"
8 #include "components/keyed_service/content/browser_context_dependency_manager.h" 8 #include "components/keyed_service/content/browser_context_dependency_manager.h"
9 #include "components/user_prefs/user_prefs.h" 9 #include "components/user_prefs/user_prefs.h"
10 #include "content/public/browser/browser_context.h" 10 #include "content/public/browser/browser_context.h"
11 11
12 // static 12 // static
13 SupervisedUserSharedSettingsService* 13 SupervisedUserSharedSettingsService*
14 SupervisedUserSharedSettingsServiceFactory::GetForBrowserContext( 14 SupervisedUserSharedSettingsServiceFactory::GetForBrowserContext(
15 content::BrowserContext* profile) { 15 content::BrowserContext* profile) {
16 return static_cast<SupervisedUserSharedSettingsService*>( 16 return static_cast<SupervisedUserSharedSettingsService*>(
17 GetInstance()->GetServiceForBrowserContext(profile, true)); 17 GetInstance()->GetServiceForBrowserContext(profile, true));
18 } 18 }
19 19
20 // static 20 // static
21 SupervisedUserSharedSettingsServiceFactory* 21 SupervisedUserSharedSettingsServiceFactory*
22 SupervisedUserSharedSettingsServiceFactory::GetInstance() { 22 SupervisedUserSharedSettingsServiceFactory::GetInstance() {
23 return Singleton<SupervisedUserSharedSettingsServiceFactory>::get(); 23 return base::Singleton<SupervisedUserSharedSettingsServiceFactory>::get();
24 } 24 }
25 25
26 SupervisedUserSharedSettingsServiceFactory:: 26 SupervisedUserSharedSettingsServiceFactory::
27 SupervisedUserSharedSettingsServiceFactory() 27 SupervisedUserSharedSettingsServiceFactory()
28 : BrowserContextKeyedServiceFactory( 28 : BrowserContextKeyedServiceFactory(
29 "SupervisedUserSharedSettingsService", 29 "SupervisedUserSharedSettingsService",
30 BrowserContextDependencyManager::GetInstance()) {} 30 BrowserContextDependencyManager::GetInstance()) {}
31 31
32 SupervisedUserSharedSettingsServiceFactory:: 32 SupervisedUserSharedSettingsServiceFactory::
33 ~SupervisedUserSharedSettingsServiceFactory() {} 33 ~SupervisedUserSharedSettingsServiceFactory() {}
34 34
35 KeyedService* 35 KeyedService*
36 SupervisedUserSharedSettingsServiceFactory::BuildServiceInstanceFor( 36 SupervisedUserSharedSettingsServiceFactory::BuildServiceInstanceFor(
37 content::BrowserContext* profile) const { 37 content::BrowserContext* profile) const {
38 return new SupervisedUserSharedSettingsService( 38 return new SupervisedUserSharedSettingsService(
39 user_prefs::UserPrefs::Get(profile)); 39 user_prefs::UserPrefs::Get(profile));
40 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698