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

Side by Side Diff: chrome/browser/extensions/api/idle/idle_manager_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/extensions/api/idle/idle_manager_factory.h" 5 #include "chrome/browser/extensions/api/idle/idle_manager_factory.h"
6 6
7 #include "chrome/browser/extensions/api/idle/idle_manager.h" 7 #include "chrome/browser/extensions/api/idle/idle_manager.h"
8 #include "chrome/browser/extensions/extension_system_factory.h" 8 #include "chrome/browser/extensions/extension_system_factory.h"
9 #include "chrome/browser/profiles/incognito_helpers.h" 9 #include "chrome/browser/profiles/incognito_helpers.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "components/browser_context_keyed_service/browser_context_dependency_ma nager.h" 11 #include "components/browser_context_keyed_service/browser_context_dependency_ma nager.h"
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 // static 15 // static
16 IdleManager* IdleManagerFactory::GetForProfile( 16 IdleManager* IdleManagerFactory::GetForProfile(
17 Profile* profile) { 17 Profile* profile) {
18 return static_cast<IdleManager*>( 18 return static_cast<IdleManager*>(
19 GetInstance()->GetServiceForProfile(profile, true)); 19 GetInstance()->GetServiceForBrowserContext(profile, true));
20 } 20 }
21 21
22 // static 22 // static
23 IdleManagerFactory* IdleManagerFactory::GetInstance() { 23 IdleManagerFactory* IdleManagerFactory::GetInstance() {
24 return Singleton<IdleManagerFactory>::get(); 24 return Singleton<IdleManagerFactory>::get();
25 } 25 }
26 26
27 IdleManagerFactory::IdleManagerFactory() 27 IdleManagerFactory::IdleManagerFactory()
28 : ProfileKeyedServiceFactory("IdleManager", 28 : BrowserContextKeyedServiceFactory(
29 ProfileDependencyManager::GetInstance()) { 29 "IdleManager",
30 BrowserContextDependencyManager::GetInstance()) {
30 DependsOn(ExtensionSystemFactory::GetInstance()); 31 DependsOn(ExtensionSystemFactory::GetInstance());
31 } 32 }
32 33
33 IdleManagerFactory::~IdleManagerFactory() { 34 IdleManagerFactory::~IdleManagerFactory() {
34 } 35 }
35 36
36 ProfileKeyedService* IdleManagerFactory::BuildServiceInstanceFor( 37 BrowserContextKeyedService* IdleManagerFactory::BuildServiceInstanceFor(
37 content::BrowserContext* profile) const { 38 content::BrowserContext* profile) const {
38 IdleManager* idle_manager = new IdleManager(static_cast<Profile*>(profile)); 39 IdleManager* idle_manager = new IdleManager(static_cast<Profile*>(profile));
39 idle_manager->Init(); 40 idle_manager->Init();
40 return idle_manager; 41 return idle_manager;
41 } 42 }
42 43
43 content::BrowserContext* IdleManagerFactory::GetBrowserContextToUse( 44 content::BrowserContext* IdleManagerFactory::GetBrowserContextToUse(
44 content::BrowserContext* context) const { 45 content::BrowserContext* context) const {
45 return chrome::GetBrowserContextRedirectedInIncognito(context); 46 return chrome::GetBrowserContextRedirectedInIncognito(context);
46 } 47 }
47 48
48 bool IdleManagerFactory::ServiceIsCreatedWithProfile() const { 49 bool IdleManagerFactory::ServiceIsCreatedWithBrowserContext() const {
49 return true; 50 return true;
50 } 51 }
51 52
52 bool IdleManagerFactory::ServiceIsNULLWhileTesting() const { 53 bool IdleManagerFactory::ServiceIsNULLWhileTesting() const {
53 return true; 54 return true;
54 } 55 }
55 56
56 } // namespace extensions 57 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698