| 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/test_extension_system.h" | 5 #include "chrome/browser/extensions/test_extension_system.h" |
| 6 | 6 |
| 7 #include "chrome/browser/extensions/api/alarms/alarm_manager.h" | 7 #include "chrome/browser/extensions/api/alarms/alarm_manager.h" |
| 8 #include "chrome/browser/extensions/extension_devtools_manager.h" | 8 #include "chrome/browser/extensions/extension_devtools_manager.h" |
| 9 #include "chrome/browser/extensions/extension_event_router.h" | 9 #include "chrome/browser/extensions/extension_event_router.h" |
| 10 #include "chrome/browser/extensions/extension_info_map.h" | 10 #include "chrome/browser/extensions/extension_info_map.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 125 } |
| 126 | 126 |
| 127 ExtensionEventRouter* TestExtensionSystem::event_router() { | 127 ExtensionEventRouter* TestExtensionSystem::event_router() { |
| 128 return NULL; | 128 return NULL; |
| 129 } | 129 } |
| 130 | 130 |
| 131 RulesRegistryService* TestExtensionSystem::rules_registry_service() { | 131 RulesRegistryService* TestExtensionSystem::rules_registry_service() { |
| 132 return NULL; | 132 return NULL; |
| 133 } | 133 } |
| 134 | 134 |
| 135 ApiResourceManager<SerialConnection>* |
| 136 TestExtensionSystem::serial_connection_manager() { |
| 137 return NULL; |
| 138 } |
| 139 |
| 140 ApiResourceManager<Socket>*TestExtensionSystem::socket_manager() { |
| 141 return NULL; |
| 142 } |
| 143 |
| 144 ApiResourceManager<UsbDeviceResource>* |
| 145 TestExtensionSystem::usb_device_resource_manager() { |
| 146 return NULL; |
| 147 } |
| 148 |
| 135 // static | 149 // static |
| 136 ProfileKeyedService* TestExtensionSystem::Build(Profile* profile) { | 150 ProfileKeyedService* TestExtensionSystem::Build(Profile* profile) { |
| 137 return new TestExtensionSystem(profile); | 151 return new TestExtensionSystem(profile); |
| 138 } | 152 } |
| 139 | 153 |
| 140 } // namespace extensions | 154 } // namespace extensions |
| OLD | NEW |