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/commands/extension_command_service_facto
ry.h" | 5 #include "chrome/browser/extensions/api/commands/command_service_factory.h" |
6 | 6 |
7 #include "chrome/browser/extensions/api/commands/extension_command_service.h" | 7 #include "chrome/browser/extensions/api/commands/command_service.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_dependency_manager.h" | 9 #include "chrome/browser/profiles/profile_dependency_manager.h" |
10 | 10 |
11 namespace extensions { | 11 namespace extensions { |
12 | 12 |
13 // static | 13 // static |
14 ExtensionCommandService* ExtensionCommandServiceFactory::GetForProfile( | 14 CommandService* CommandServiceFactory::GetForProfile( |
15 Profile* profile) { | 15 Profile* profile) { |
16 return static_cast<ExtensionCommandService*>( | 16 return static_cast<CommandService*>( |
17 GetInstance()->GetServiceForProfile(profile, true)); | 17 GetInstance()->GetServiceForProfile(profile, true)); |
18 } | 18 } |
19 | 19 |
20 // static | 20 // static |
21 ExtensionCommandServiceFactory* ExtensionCommandServiceFactory::GetInstance() { | 21 CommandServiceFactory* CommandServiceFactory::GetInstance() { |
22 return Singleton<ExtensionCommandServiceFactory>::get(); | 22 return Singleton<CommandServiceFactory>::get(); |
23 } | 23 } |
24 | 24 |
25 bool ExtensionCommandServiceFactory::ServiceIsCreatedWithProfile() { | 25 bool CommandServiceFactory::ServiceIsCreatedWithProfile() { |
26 return true; | 26 return true; |
27 } | 27 } |
28 | 28 |
29 ExtensionCommandServiceFactory::ExtensionCommandServiceFactory() | 29 CommandServiceFactory::CommandServiceFactory() |
30 : ProfileKeyedServiceFactory("ExtensionCommandService", | 30 : ProfileKeyedServiceFactory("CommandService", |
31 ProfileDependencyManager::GetInstance()) { | 31 ProfileDependencyManager::GetInstance()) { |
32 DependsOn(ExtensionSystemFactory::GetInstance()); | 32 DependsOn(ExtensionSystemFactory::GetInstance()); |
33 } | 33 } |
34 | 34 |
35 ExtensionCommandServiceFactory::~ExtensionCommandServiceFactory() { | 35 CommandServiceFactory::~CommandServiceFactory() { |
36 } | 36 } |
37 | 37 |
38 ProfileKeyedService* ExtensionCommandServiceFactory::BuildServiceInstanceFor( | 38 ProfileKeyedService* CommandServiceFactory::BuildServiceInstanceFor( |
39 Profile* profile) const { | 39 Profile* profile) const { |
40 return new ExtensionCommandService(profile); | 40 return new CommandService(profile); |
41 } | 41 } |
42 | 42 |
43 bool ExtensionCommandServiceFactory::ServiceRedirectedInIncognito() { | 43 bool CommandServiceFactory::ServiceRedirectedInIncognito() { |
44 return true; | 44 return true; |
45 } | 45 } |
46 | 46 |
47 } // namespace extensions | 47 } // namespace extensions |
OLD | NEW |