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

Side by Side Diff: ios/chrome/browser/signin/account_consistency_service_factory.mm

Issue 2848673003: [ObjC ARC] Converts ios/chrome/browser/signin:signin to ARC. (Closed)
Patch Set: Created 3 years, 7 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_consistency_service_factory.h" 5 #include "ios/chrome/browser/signin/account_consistency_service_factory.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 9 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
10 #include "components/signin/ios/browser/account_consistency_service.h" 10 #include "components/signin/ios/browser/account_consistency_service.h"
11 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 11 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
12 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" 12 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h"
13 #include "ios/chrome/browser/signin/account_reconcilor_factory.h" 13 #include "ios/chrome/browser/signin/account_reconcilor_factory.h"
14 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h" 14 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h"
15 #include "ios/chrome/browser/signin/signin_client_factory.h" 15 #include "ios/chrome/browser/signin/signin_client_factory.h"
16 #include "ios/chrome/browser/signin/signin_manager_factory.h" 16 #include "ios/chrome/browser/signin/signin_manager_factory.h"
17 17
18 #if !defined(__has_feature) || !__has_feature(objc_arc)
19 #error "This file requires ARC support."
20 #endif
21
18 namespace ios { 22 namespace ios {
19 23
20 AccountConsistencyServiceFactory::AccountConsistencyServiceFactory() 24 AccountConsistencyServiceFactory::AccountConsistencyServiceFactory()
21 : BrowserStateKeyedServiceFactory( 25 : BrowserStateKeyedServiceFactory(
22 "AccountConsistencyService", 26 "AccountConsistencyService",
23 BrowserStateDependencyManager::GetInstance()) { 27 BrowserStateDependencyManager::GetInstance()) {
24 DependsOn(ios::AccountReconcilorFactory::GetInstance()); 28 DependsOn(ios::AccountReconcilorFactory::GetInstance());
25 DependsOn(ios::CookieSettingsFactory::GetInstance()); 29 DependsOn(ios::CookieSettingsFactory::GetInstance());
26 DependsOn(GaiaCookieManagerServiceFactory::GetInstance()); 30 DependsOn(GaiaCookieManagerServiceFactory::GetInstance());
27 DependsOn(SigninClientFactory::GetInstance()); 31 DependsOn(SigninClientFactory::GetInstance());
(...skipping 28 matching lines...) Expand all
56 return base::MakeUnique<AccountConsistencyService>( 60 return base::MakeUnique<AccountConsistencyService>(
57 chrome_browser_state, 61 chrome_browser_state,
58 ios::AccountReconcilorFactory::GetForBrowserState(chrome_browser_state), 62 ios::AccountReconcilorFactory::GetForBrowserState(chrome_browser_state),
59 ios::CookieSettingsFactory::GetForBrowserState(chrome_browser_state), 63 ios::CookieSettingsFactory::GetForBrowserState(chrome_browser_state),
60 GaiaCookieManagerServiceFactory::GetForBrowserState(chrome_browser_state), 64 GaiaCookieManagerServiceFactory::GetForBrowserState(chrome_browser_state),
61 SigninClientFactory::GetForBrowserState(chrome_browser_state), 65 SigninClientFactory::GetForBrowserState(chrome_browser_state),
62 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state)); 66 ios::SigninManagerFactory::GetForBrowserState(chrome_browser_state));
63 } 67 }
64 68
65 } // namespace ios 69 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698