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

Side by Side Diff: chrome/browser/ui/ash/app_sync_ui_state_factory.cc

Issue 15517005: Remove references to Profile from browser_context_keyed_service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & style Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/ui/ash/app_sync_ui_state_factory.h" 5 #include "chrome/browser/ui/ash/app_sync_ui_state_factory.h"
6 6
7 #include "chrome/browser/profiles/profile.h" 7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/sync/profile_sync_service_factory.h" 8 #include "chrome/browser/sync/profile_sync_service_factory.h"
9 #include "chrome/browser/ui/ash/app_sync_ui_state.h" 9 #include "chrome/browser/ui/ash/app_sync_ui_state.h"
10 #include "components/browser_context_keyed_service/browser_context_dependency_ma nager.h" 10 #include "components/browser_context_keyed_service/browser_context_dependency_ma nager.h"
11 11
12 // static 12 // static
13 AppSyncUIState* AppSyncUIStateFactory::GetForProfile(Profile* profile) { 13 AppSyncUIState* AppSyncUIStateFactory::GetForProfile(Profile* profile) {
14 if (!AppSyncUIState::ShouldObserveAppSyncForProfile(profile)) 14 if (!AppSyncUIState::ShouldObserveAppSyncForProfile(profile))
15 return NULL; 15 return NULL;
16 16
17 return static_cast<AppSyncUIState*>( 17 return static_cast<AppSyncUIState*>(
18 GetInstance()->GetServiceForProfile(profile, true)); 18 GetInstance()->GetServiceForBrowserContext(profile, true));
19 } 19 }
20 20
21 // static 21 // static
22 AppSyncUIStateFactory* AppSyncUIStateFactory::GetInstance() { 22 AppSyncUIStateFactory* AppSyncUIStateFactory::GetInstance() {
23 return Singleton<AppSyncUIStateFactory>::get(); 23 return Singleton<AppSyncUIStateFactory>::get();
24 } 24 }
25 25
26 AppSyncUIStateFactory::AppSyncUIStateFactory() 26 AppSyncUIStateFactory::AppSyncUIStateFactory()
27 : ProfileKeyedServiceFactory("AppSyncUIState", 27 : BrowserContextKeyedServiceFactory(
28 ProfileDependencyManager::GetInstance()) { 28 "AppSyncUIState",
29 BrowserContextDependencyManager::GetInstance()) {
29 DependsOn(ProfileSyncServiceFactory::GetInstance()); 30 DependsOn(ProfileSyncServiceFactory::GetInstance());
30 } 31 }
31 32
32 AppSyncUIStateFactory::~AppSyncUIStateFactory() { 33 AppSyncUIStateFactory::~AppSyncUIStateFactory() {
33 } 34 }
34 35
35 ProfileKeyedService* AppSyncUIStateFactory::BuildServiceInstanceFor( 36 BrowserContextKeyedService* AppSyncUIStateFactory::BuildServiceInstanceFor(
36 content::BrowserContext* context) const { 37 content::BrowserContext* context) const {
37 Profile* profile = static_cast<Profile*>(context); 38 Profile* profile = static_cast<Profile*>(context);
38 DCHECK(AppSyncUIState::ShouldObserveAppSyncForProfile(profile)); 39 DCHECK(AppSyncUIState::ShouldObserveAppSyncForProfile(profile));
39 return new AppSyncUIState(profile); 40 return new AppSyncUIState(profile);
40 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698