| OLD | NEW |
| 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/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/browser/profiles/profile_dependency_manager.h" | 11 #include "chrome/browser/profiles/profile_dependency_manager.h" |
| 11 | 12 |
| 12 namespace extensions { | 13 namespace extensions { |
| 13 | 14 |
| 14 // static | 15 // static |
| 15 IdleManager* IdleManagerFactory::GetForProfile( | 16 IdleManager* IdleManagerFactory::GetForProfile( |
| 16 Profile* profile) { | 17 Profile* profile) { |
| 17 return static_cast<IdleManager*>( | 18 return static_cast<IdleManager*>( |
| 18 GetInstance()->GetServiceForProfile(profile, true)); | 19 GetInstance()->GetServiceForProfile(profile, true)); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 32 IdleManagerFactory::~IdleManagerFactory() { | 33 IdleManagerFactory::~IdleManagerFactory() { |
| 33 } | 34 } |
| 34 | 35 |
| 35 ProfileKeyedService* IdleManagerFactory::BuildServiceInstanceFor( | 36 ProfileKeyedService* IdleManagerFactory::BuildServiceInstanceFor( |
| 36 content::BrowserContext* profile) const { | 37 content::BrowserContext* profile) const { |
| 37 IdleManager* idle_manager = new IdleManager(static_cast<Profile*>(profile)); | 38 IdleManager* idle_manager = new IdleManager(static_cast<Profile*>(profile)); |
| 38 idle_manager->Init(); | 39 idle_manager->Init(); |
| 39 return idle_manager; | 40 return idle_manager; |
| 40 } | 41 } |
| 41 | 42 |
| 42 bool IdleManagerFactory::ServiceRedirectedInIncognito() const { | 43 content::BrowserContext* IdleManagerFactory::GetBrowserContextToUse( |
| 43 return true; | 44 content::BrowserContext* context) const { |
| 45 return chrome::GetBrowserContextRedirectedInIncognito(context); |
| 44 } | 46 } |
| 45 | 47 |
| 46 bool IdleManagerFactory::ServiceIsCreatedWithProfile() const { | 48 bool IdleManagerFactory::ServiceIsCreatedWithProfile() const { |
| 47 return true; | 49 return true; |
| 48 } | 50 } |
| 49 | 51 |
| 50 bool IdleManagerFactory::ServiceIsNULLWhileTesting() const { | 52 bool IdleManagerFactory::ServiceIsNULLWhileTesting() const { |
| 51 return true; | 53 return true; |
| 52 } | 54 } |
| 53 | 55 |
| 54 } // namespace extensions | 56 } // namespace extensions |
| OLD | NEW |