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

Side by Side Diff: ios/chrome/browser/signin/account_tracker_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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ios/chrome/browser/signin/account_tracker_service_factory.h" 5 #include "ios/chrome/browser/signin/account_tracker_service_factory.h"
6 6
7 #include "base/memory/singleton.h" 7 #include "base/memory/singleton.h"
8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 8 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
9 #include "components/signin/core/browser/account_tracker_service.h" 9 #include "components/signin/core/browser/account_tracker_service.h"
10 #include "ios/chrome/browser/signin/signin_client_factory.h" 10 #include "ios/chrome/browser/signin/signin_client_factory.h"
(...skipping 12 matching lines...) Expand all
23 23
24 // static 24 // static
25 AccountTrackerService* AccountTrackerServiceFactory::GetForBrowserState( 25 AccountTrackerService* AccountTrackerServiceFactory::GetForBrowserState(
26 ios::ChromeBrowserState* browser_state) { 26 ios::ChromeBrowserState* browser_state) {
27 return static_cast<AccountTrackerService*>( 27 return static_cast<AccountTrackerService*>(
28 GetInstance()->GetServiceForBrowserState(browser_state, true)); 28 GetInstance()->GetServiceForBrowserState(browser_state, true));
29 } 29 }
30 30
31 // static 31 // static
32 AccountTrackerServiceFactory* AccountTrackerServiceFactory::GetInstance() { 32 AccountTrackerServiceFactory* AccountTrackerServiceFactory::GetInstance() {
33 return Singleton<AccountTrackerServiceFactory>::get(); 33 return base::Singleton<AccountTrackerServiceFactory>::get();
34 } 34 }
35 35
36 void AccountTrackerServiceFactory::RegisterBrowserStatePrefs( 36 void AccountTrackerServiceFactory::RegisterBrowserStatePrefs(
37 user_prefs::PrefRegistrySyncable* registry) { 37 user_prefs::PrefRegistrySyncable* registry) {
38 AccountTrackerService::RegisterPrefs(registry); 38 AccountTrackerService::RegisterPrefs(registry);
39 } 39 }
40 40
41 scoped_ptr<KeyedService> AccountTrackerServiceFactory::BuildServiceInstanceFor( 41 scoped_ptr<KeyedService> AccountTrackerServiceFactory::BuildServiceInstanceFor(
42 web::BrowserState* context) const { 42 web::BrowserState* context) const {
43 ios::ChromeBrowserState* chrome_browser_state = 43 ios::ChromeBrowserState* chrome_browser_state =
44 ios::ChromeBrowserState::FromBrowserState(context); 44 ios::ChromeBrowserState::FromBrowserState(context);
45 scoped_ptr<AccountTrackerService> service(new AccountTrackerService()); 45 scoped_ptr<AccountTrackerService> service(new AccountTrackerService());
46 service->Initialize( 46 service->Initialize(
47 SigninClientFactory::GetForBrowserState(chrome_browser_state)); 47 SigninClientFactory::GetForBrowserState(chrome_browser_state));
48 return service.Pass(); 48 return service.Pass();
49 } 49 }
50 50
51 } // namespace ios 51 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698