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/extension_command_service_facto
ry.h" |
6 | 6 |
7 #include "chrome/browser/extensions/api/commands/extension_command_service.h" | 7 #include "chrome/browser/extensions/api/commands/extension_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 { |
| 12 |
11 // static | 13 // static |
12 ExtensionCommandService* ExtensionCommandServiceFactory::GetForProfile( | 14 ExtensionCommandService* ExtensionCommandServiceFactory::GetForProfile( |
13 Profile* profile) { | 15 Profile* profile) { |
14 return static_cast<ExtensionCommandService*>( | 16 return static_cast<ExtensionCommandService*>( |
15 GetInstance()->GetServiceForProfile(profile, true)); | 17 GetInstance()->GetServiceForProfile(profile, true)); |
16 } | 18 } |
17 | 19 |
18 // static | 20 // static |
19 ExtensionCommandServiceFactory* ExtensionCommandServiceFactory::GetInstance() { | 21 ExtensionCommandServiceFactory* ExtensionCommandServiceFactory::GetInstance() { |
20 return Singleton<ExtensionCommandServiceFactory>::get(); | 22 return Singleton<ExtensionCommandServiceFactory>::get(); |
(...skipping 13 matching lines...) Expand all Loading... |
34 } | 36 } |
35 | 37 |
36 ProfileKeyedService* ExtensionCommandServiceFactory::BuildServiceInstanceFor( | 38 ProfileKeyedService* ExtensionCommandServiceFactory::BuildServiceInstanceFor( |
37 Profile* profile) const { | 39 Profile* profile) const { |
38 return new ExtensionCommandService(profile); | 40 return new ExtensionCommandService(profile); |
39 } | 41 } |
40 | 42 |
41 bool ExtensionCommandServiceFactory::ServiceRedirectedInIncognito() { | 43 bool ExtensionCommandServiceFactory::ServiceRedirectedInIncognito() { |
42 return true; | 44 return true; |
43 } | 45 } |
| 46 |
| 47 } // namespace extensions |
OLD | NEW |