| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/menu_manager_factory.h" | 5 #include "chrome/browser/extensions/menu_manager_factory.h" |
| 6 | 6 |
| 7 #include "chrome/browser/extensions/menu_manager.h" | 7 #include "chrome/browser/extensions/menu_manager.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "components/browser_context_keyed_service/browser_context_dependency_ma
nager.h" | 9 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| 10 #include "extensions/browser/extension_system.h" | 10 #include "extensions/browser/extension_system.h" |
| 11 #include "extensions/browser/extension_system_provider.h" | 11 #include "extensions/browser/extension_system_provider.h" |
| 12 #include "extensions/browser/extensions_browser_client.h" | 12 #include "extensions/browser/extensions_browser_client.h" |
| 13 | 13 |
| 14 namespace extensions { | 14 namespace extensions { |
| 15 | 15 |
| 16 // static | 16 // static |
| 17 MenuManager* MenuManagerFactory::GetForProfile( | 17 MenuManager* MenuManagerFactory::GetForProfile( |
| 18 Profile* profile) { | 18 Profile* profile) { |
| 19 return static_cast<MenuManager*>( | 19 return static_cast<MenuManager*>( |
| 20 GetInstance()->GetServiceForBrowserContext(profile, true)); | 20 GetInstance()->GetServiceForBrowserContext(profile, true)); |
| 21 } | 21 } |
| 22 | 22 |
| 23 // static | 23 // static |
| 24 MenuManagerFactory* MenuManagerFactory::GetInstance() { | 24 MenuManagerFactory* MenuManagerFactory::GetInstance() { |
| 25 return Singleton<MenuManagerFactory>::get(); | 25 return Singleton<MenuManagerFactory>::get(); |
| 26 } | 26 } |
| 27 | 27 |
| 28 MenuManagerFactory::MenuManagerFactory() | 28 MenuManagerFactory::MenuManagerFactory() |
| 29 : BrowserContextKeyedServiceFactory( | 29 : BrowserContextKeyedServiceFactory( |
| 30 "MenuManager", | 30 "MenuManager", |
| 31 BrowserContextDependencyManager::GetInstance()) { | 31 BrowserContextDependencyManager::GetInstance()) { |
| 32 DependsOn(ExtensionsBrowserClient::Get()->GetExtensionSystemFactory()); | 32 DependsOn(ExtensionsBrowserClient::Get()->GetExtensionSystemFactory()); |
| 33 } | 33 } |
| 34 | 34 |
| 35 MenuManagerFactory::~MenuManagerFactory() {} | 35 MenuManagerFactory::~MenuManagerFactory() {} |
| 36 | 36 |
| 37 BrowserContextKeyedService* | 37 KeyedService* MenuManagerFactory::BuildServiceInstanceFor( |
| 38 MenuManagerFactory::BuildServiceInstanceFor( | 38 content::BrowserContext* context) const { |
| 39 content::BrowserContext* context) const { | |
| 40 Profile* profile = Profile::FromBrowserContext(context); | 39 Profile* profile = Profile::FromBrowserContext(context); |
| 41 return new MenuManager( | 40 return new MenuManager( |
| 42 profile, | 41 profile, |
| 43 ExtensionSystem::Get(profile)->state_store()); | 42 ExtensionSystem::Get(profile)->state_store()); |
| 44 } | 43 } |
| 45 | 44 |
| 46 content::BrowserContext* MenuManagerFactory::GetBrowserContextToUse( | 45 content::BrowserContext* MenuManagerFactory::GetBrowserContextToUse( |
| 47 content::BrowserContext* context) const { | 46 content::BrowserContext* context) const { |
| 48 return ExtensionsBrowserClient::Get()->GetOriginalContext(context); | 47 return ExtensionsBrowserClient::Get()->GetOriginalContext(context); |
| 49 } | 48 } |
| 50 | 49 |
| 51 bool MenuManagerFactory::ServiceIsCreatedWithBrowserContext() const { | 50 bool MenuManagerFactory::ServiceIsCreatedWithBrowserContext() const { |
| 52 return true; | 51 return true; |
| 53 } | 52 } |
| 54 | 53 |
| 55 bool MenuManagerFactory::ServiceIsNULLWhileTesting() const { | 54 bool MenuManagerFactory::ServiceIsNULLWhileTesting() const { |
| 56 return true; | 55 return true; |
| 57 } | 56 } |
| 58 | 57 |
| 59 } // namespace extensions | 58 } // namespace extensions |
| OLD | NEW |