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

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

Issue 1586833002: Convert Pass()→std::move() for iOS build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert accidental //base change Created 4 years, 11 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>
8
7 #include "base/memory/singleton.h" 9 #include "base/memory/singleton.h"
8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
9 #include "components/signin/core/browser/about_signin_internals.h" 11 #include "components/signin/core/browser/about_signin_internals.h"
10 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" 12 #include "ios/chrome/browser/signin/account_tracker_service_factory.h"
11 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h" 13 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h"
12 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" 14 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h"
13 #include "ios/chrome/browser/signin/signin_client_factory.h" 15 #include "ios/chrome/browser/signin/signin_client_factory.h"
14 #include "ios/chrome/browser/signin/signin_error_controller_factory.h" 16 #include "ios/chrome/browser/signin/signin_error_controller_factory.h"
15 #include "ios/chrome/browser/signin/signin_manager_factory.h" 17 #include "ios/chrome/browser/signin/signin_manager_factory.h"
16 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h" 18 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ios::ChromeBrowserState::FromBrowserState(context); 51 ios::ChromeBrowserState::FromBrowserState(context);
50 scoped_ptr<AboutSigninInternals> service(new AboutSigninInternals( 52 scoped_ptr<AboutSigninInternals> service(new AboutSigninInternals(
51 OAuth2TokenServiceFactory::GetForBrowserState(chrome_browser_state), 53 OAuth2TokenServiceFactory::GetForBrowserState(chrome_browser_state),
52 AccountTrackerServiceFactory::GetForBrowserState(chrome_browser_state), 54 AccountTrackerServiceFactory::GetForBrowserState(chrome_browser_state),
53 SigninManagerFactory::GetForBrowserState(chrome_browser_state), 55 SigninManagerFactory::GetForBrowserState(chrome_browser_state),
54 SigninErrorControllerFactory::GetForBrowserState(chrome_browser_state), 56 SigninErrorControllerFactory::GetForBrowserState(chrome_browser_state),
55 GaiaCookieManagerServiceFactory::GetForBrowserState( 57 GaiaCookieManagerServiceFactory::GetForBrowserState(
56 chrome_browser_state))); 58 chrome_browser_state)));
57 service->Initialize( 59 service->Initialize(
58 SigninClientFactory::GetForBrowserState(chrome_browser_state)); 60 SigninClientFactory::GetForBrowserState(chrome_browser_state));
59 return service.Pass(); 61 return std::move(service);
60 } 62 }
61 63
62 void AboutSigninInternalsFactory::RegisterBrowserStatePrefs( 64 void AboutSigninInternalsFactory::RegisterBrowserStatePrefs(
63 user_prefs::PrefRegistrySyncable* user_prefs) { 65 user_prefs::PrefRegistrySyncable* user_prefs) {
64 AboutSigninInternals::RegisterPrefs(user_prefs); 66 AboutSigninInternals::RegisterPrefs(user_prefs);
65 } 67 }
66 68
67 } // namespace ios 69 } // namespace ios
OLDNEW
« no previous file with comments | « ios/chrome/browser/safe_browsing/ping_manager.cc ('k') | ios/chrome/browser/signin/account_fetcher_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698