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

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

Issue 1667733002: Move chrome_browser_state.{cc,h} to ios/chrome/browser/browser_state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test_support_ios
Patch Set: Created 4 years, 10 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/oauth2_token_service_factory.h" 5 #include "ios/chrome/browser/signin/oauth2_token_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/pref_registry/pref_registry_syncable.h" 9 #include "components/pref_registry/pref_registry_syncable.h"
10 #include "components/signin/core/browser/profile_oauth2_token_service.h" 10 #include "components/signin/core/browser/profile_oauth2_token_service.h"
11 #include "components/signin/core/common/signin_pref_names.h" 11 #include "components/signin/core/common/signin_pref_names.h"
12 #include "components/signin/ios/browser/profile_oauth2_token_service_ios_delegat e.h" 12 #include "components/signin/ios/browser/profile_oauth2_token_service_ios_delegat e.h"
13 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
13 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" 14 #include "ios/chrome/browser/signin/account_tracker_service_factory.h"
14 #include "ios/chrome/browser/signin/signin_client_factory.h" 15 #include "ios/chrome/browser/signin/signin_client_factory.h"
15 #include "ios/chrome/browser/signin/signin_error_controller_factory.h" 16 #include "ios/chrome/browser/signin/signin_error_controller_factory.h"
16 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h"
17 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" 17 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
18 18
19 OAuth2TokenServiceFactory::OAuth2TokenServiceFactory() 19 OAuth2TokenServiceFactory::OAuth2TokenServiceFactory()
20 : BrowserStateKeyedServiceFactory( 20 : BrowserStateKeyedServiceFactory(
21 "ProfileOAuth2TokenService", 21 "ProfileOAuth2TokenService",
22 BrowserStateDependencyManager::GetInstance()) { 22 BrowserStateDependencyManager::GetInstance()) {
23 DependsOn(ios::AccountTrackerServiceFactory::GetInstance()); 23 DependsOn(ios::AccountTrackerServiceFactory::GetInstance());
24 DependsOn(SigninClientFactory::GetInstance()); 24 DependsOn(SigninClientFactory::GetInstance());
25 DependsOn(ios::SigninErrorControllerFactory::GetInstance()); 25 DependsOn(ios::SigninErrorControllerFactory::GetInstance());
26 } 26 }
(...skipping 26 matching lines...) Expand all
53 new ProfileOAuth2TokenServiceIOSDelegate( 53 new ProfileOAuth2TokenServiceIOSDelegate(
54 SigninClientFactory::GetForBrowserState(chrome_browser_state), 54 SigninClientFactory::GetForBrowserState(chrome_browser_state),
55 ios::GetChromeBrowserProvider() 55 ios::GetChromeBrowserProvider()
56 ->GetProfileOAuth2TokenServiceIOSProvider(), 56 ->GetProfileOAuth2TokenServiceIOSProvider(),
57 ios::AccountTrackerServiceFactory::GetForBrowserState( 57 ios::AccountTrackerServiceFactory::GetForBrowserState(
58 chrome_browser_state), 58 chrome_browser_state),
59 ios::SigninErrorControllerFactory::GetForBrowserState( 59 ios::SigninErrorControllerFactory::GetForBrowserState(
60 chrome_browser_state)); 60 chrome_browser_state));
61 return make_scoped_ptr(new ProfileOAuth2TokenService(delegate)); 61 return make_scoped_ptr(new ProfileOAuth2TokenService(delegate));
62 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698