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

Side by Side Diff: ios/chrome/browser/signin/about_signin_internals_factory.cc

Issue 1861593005: Convert //ios from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase? Created 4 years, 8 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/about_signin_internals_factory.h" 5 #include "ios/chrome/browser/signin/about_signin_internals_factory.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/memory/singleton.h" 9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
(...skipping 27 matching lines...) Expand all
38 ios::ChromeBrowserState* browser_state) { 38 ios::ChromeBrowserState* browser_state) {
39 return static_cast<AboutSigninInternals*>( 39 return static_cast<AboutSigninInternals*>(
40 GetInstance()->GetServiceForBrowserState(browser_state, true)); 40 GetInstance()->GetServiceForBrowserState(browser_state, true));
41 } 41 }
42 42
43 // static 43 // static
44 AboutSigninInternalsFactory* AboutSigninInternalsFactory::GetInstance() { 44 AboutSigninInternalsFactory* AboutSigninInternalsFactory::GetInstance() {
45 return base::Singleton<AboutSigninInternalsFactory>::get(); 45 return base::Singleton<AboutSigninInternalsFactory>::get();
46 } 46 }
47 47
48 scoped_ptr<KeyedService> AboutSigninInternalsFactory::BuildServiceInstanceFor( 48 std::unique_ptr<KeyedService>
49 AboutSigninInternalsFactory::BuildServiceInstanceFor(
49 web::BrowserState* context) const { 50 web::BrowserState* context) const {
50 ios::ChromeBrowserState* chrome_browser_state = 51 ios::ChromeBrowserState* chrome_browser_state =
51 ios::ChromeBrowserState::FromBrowserState(context); 52 ios::ChromeBrowserState::FromBrowserState(context);
52 scoped_ptr<AboutSigninInternals> service(new AboutSigninInternals( 53 std::unique_ptr<AboutSigninInternals> service(new AboutSigninInternals(
53 OAuth2TokenServiceFactory::GetForBrowserState(chrome_browser_state), 54 OAuth2TokenServiceFactory::GetForBrowserState(chrome_browser_state),
54 AccountTrackerServiceFactory::GetForBrowserState(chrome_browser_state), 55 AccountTrackerServiceFactory::GetForBrowserState(chrome_browser_state),
55 SigninManagerFactory::GetForBrowserState(chrome_browser_state), 56 SigninManagerFactory::GetForBrowserState(chrome_browser_state),
56 SigninErrorControllerFactory::GetForBrowserState(chrome_browser_state), 57 SigninErrorControllerFactory::GetForBrowserState(chrome_browser_state),
57 GaiaCookieManagerServiceFactory::GetForBrowserState( 58 GaiaCookieManagerServiceFactory::GetForBrowserState(
58 chrome_browser_state))); 59 chrome_browser_state)));
59 service->Initialize( 60 service->Initialize(
60 SigninClientFactory::GetForBrowserState(chrome_browser_state)); 61 SigninClientFactory::GetForBrowserState(chrome_browser_state));
61 return std::move(service); 62 return std::move(service);
62 } 63 }
63 64
64 void AboutSigninInternalsFactory::RegisterBrowserStatePrefs( 65 void AboutSigninInternalsFactory::RegisterBrowserStatePrefs(
65 user_prefs::PrefRegistrySyncable* user_prefs) { 66 user_prefs::PrefRegistrySyncable* user_prefs) {
66 AboutSigninInternals::RegisterPrefs(user_prefs); 67 AboutSigninInternals::RegisterPrefs(user_prefs);
67 } 68 }
68 69
69 } // namespace ios 70 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698