| 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/developer_private/developer_private_api_
factory.h" | 5 #include "chrome/browser/extensions/api/developer_private/developer_private_api_
factory.h" |
| 6 | 6 |
| 7 #include "chrome/browser/extensions/api/developer_private/developer_private_api.
h" | 7 #include "chrome/browser/extensions/api/developer_private/developer_private_api.
h" |
| 8 #include "chrome/browser/extensions/extension_system_factory.h" | 8 #include "chrome/browser/extensions/extension_system_factory.h" |
| 9 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/profiles/profile_dependency_manager.h" | 10 #include "chrome/browser/profiles/profile_dependency_manager.h" |
| 10 | 11 |
| 11 namespace extensions { | 12 namespace extensions { |
| 12 | 13 |
| 13 // static | 14 // static |
| 14 DeveloperPrivateAPI* DeveloperPrivateAPIFactory::GetForProfile( | 15 DeveloperPrivateAPI* DeveloperPrivateAPIFactory::GetForProfile( |
| 15 Profile* profile) { | 16 Profile* profile) { |
| 16 return static_cast<DeveloperPrivateAPI*>( | 17 return static_cast<DeveloperPrivateAPI*>( |
| 17 GetInstance()->GetServiceForProfile(profile, true)); | 18 GetInstance()->GetServiceForProfile(profile, true)); |
| 18 } | 19 } |
| 19 | 20 |
| 20 // static | 21 // static |
| 21 DeveloperPrivateAPIFactory* DeveloperPrivateAPIFactory::GetInstance() { | 22 DeveloperPrivateAPIFactory* DeveloperPrivateAPIFactory::GetInstance() { |
| 22 return Singleton<DeveloperPrivateAPIFactory>::get(); | 23 return Singleton<DeveloperPrivateAPIFactory>::get(); |
| 23 } | 24 } |
| 24 | 25 |
| 25 DeveloperPrivateAPIFactory::DeveloperPrivateAPIFactory() | 26 DeveloperPrivateAPIFactory::DeveloperPrivateAPIFactory() |
| 26 : ProfileKeyedServiceFactory("DeveloperPrivateAPI", | 27 : ProfileKeyedServiceFactory("DeveloperPrivateAPI", |
| 27 ProfileDependencyManager::GetInstance()) { | 28 ProfileDependencyManager::GetInstance()) { |
| 28 DependsOn(ExtensionSystemFactory::GetInstance()); | 29 DependsOn(ExtensionSystemFactory::GetInstance()); |
| 29 } | 30 } |
| 30 | 31 |
| 31 DeveloperPrivateAPIFactory::~DeveloperPrivateAPIFactory() { | 32 DeveloperPrivateAPIFactory::~DeveloperPrivateAPIFactory() { |
| 32 } | 33 } |
| 33 | 34 |
| 34 ProfileKeyedService* DeveloperPrivateAPIFactory::BuildServiceInstanceFor( | 35 ProfileKeyedService* DeveloperPrivateAPIFactory::BuildServiceInstanceFor( |
| 35 Profile* profile) const { | 36 content::BrowserContext* profile) const { |
| 36 return new DeveloperPrivateAPI(profile); | 37 return new DeveloperPrivateAPI(static_cast<Profile*>(profile)); |
| 37 } | 38 } |
| 38 | 39 |
| 39 bool DeveloperPrivateAPIFactory::ServiceRedirectedInIncognito() const { | 40 bool DeveloperPrivateAPIFactory::ServiceRedirectedInIncognito() const { |
| 40 return true; | 41 return true; |
| 41 } | 42 } |
| 42 | 43 |
| 43 bool DeveloperPrivateAPIFactory::ServiceIsCreatedWithProfile() const { | 44 bool DeveloperPrivateAPIFactory::ServiceIsCreatedWithProfile() const { |
| 44 return true; | 45 return true; |
| 45 } | 46 } |
| 46 | 47 |
| 47 bool DeveloperPrivateAPIFactory::ServiceIsNULLWhileTesting() const { | 48 bool DeveloperPrivateAPIFactory::ServiceIsNULLWhileTesting() const { |
| 48 return true; | 49 return true; |
| 49 } | 50 } |
| 50 | 51 |
| 51 } // namespace extensions | 52 } // namespace extensions |
| OLD | NEW |