| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "extensions/browser/browser_context_keyed_service_factories.h" | 5 #include "extensions/browser/browser_context_keyed_service_factories.h" |
| 6 | 6 |
| 7 #include "extensions/browser/api/alarms/alarm_manager.h" | 7 #include "extensions/browser/api/alarms/alarm_manager.h" |
| 8 #include "extensions/browser/api/api_resource_manager.h" | 8 #include "extensions/browser/api/api_resource_manager.h" |
| 9 #include "extensions/browser/api/audio/audio_api.h" | 9 #include "extensions/browser/api/audio/audio_api.h" |
| 10 #include "extensions/browser/api/bluetooth/bluetooth_api.h" | 10 #include "extensions/browser/api/bluetooth/bluetooth_api.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 ApiResourceManager<SerialConnection>::GetFactoryInstance(); | 51 ApiResourceManager<SerialConnection>::GetFactoryInstance(); |
| 52 ApiResourceManager<Socket>::GetFactoryInstance(); | 52 ApiResourceManager<Socket>::GetFactoryInstance(); |
| 53 ApiResourceManager<UsbDeviceResource>::GetFactoryInstance(); | 53 ApiResourceManager<UsbDeviceResource>::GetFactoryInstance(); |
| 54 AudioAPI::GetFactoryInstance(); | 54 AudioAPI::GetFactoryInstance(); |
| 55 BluetoothAPI::GetFactoryInstance(); | 55 BluetoothAPI::GetFactoryInstance(); |
| 56 BluetoothLowEnergyAPI::GetFactoryInstance(); | 56 BluetoothLowEnergyAPI::GetFactoryInstance(); |
| 57 BluetoothPrivateAPI::GetFactoryInstance(); | 57 BluetoothPrivateAPI::GetFactoryInstance(); |
| 58 #if defined(OS_CHROMEOS) | 58 #if defined(OS_CHROMEOS) |
| 59 chromeos::VpnServiceFactory::GetInstance(); | 59 chromeos::VpnServiceFactory::GetInstance(); |
| 60 #endif | 60 #endif |
| 61 core_api::BluetoothSocketEventDispatcher::GetFactoryInstance(); | 61 api::BluetoothSocketEventDispatcher::GetFactoryInstance(); |
| 62 core_api::TCPServerSocketEventDispatcher::GetFactoryInstance(); | 62 api::TCPServerSocketEventDispatcher::GetFactoryInstance(); |
| 63 core_api::TCPSocketEventDispatcher::GetFactoryInstance(); | 63 api::TCPSocketEventDispatcher::GetFactoryInstance(); |
| 64 core_api::UDPSocketEventDispatcher::GetFactoryInstance(); | 64 api::UDPSocketEventDispatcher::GetFactoryInstance(); |
| 65 DeclarativeUserScriptManagerFactory::GetInstance(); | 65 DeclarativeUserScriptManagerFactory::GetInstance(); |
| 66 EventRouterFactory::GetInstance(); | 66 EventRouterFactory::GetInstance(); |
| 67 ExtensionMessageFilter::EnsureShutdownNotifierFactoryBuilt(); | 67 ExtensionMessageFilter::EnsureShutdownNotifierFactoryBuilt(); |
| 68 ExtensionPrefsFactory::GetInstance(); | 68 ExtensionPrefsFactory::GetInstance(); |
| 69 HidDeviceManager::GetFactoryInstance(); | 69 HidDeviceManager::GetFactoryInstance(); |
| 70 IdleManagerFactory::GetInstance(); | 70 IdleManagerFactory::GetInstance(); |
| 71 ManagementAPI::GetFactoryInstance(); | 71 ManagementAPI::GetFactoryInstance(); |
| 72 #if defined(OS_CHROMEOS) | 72 #if defined(OS_CHROMEOS) |
| 73 NetworkingConfigServiceFactory::GetInstance(); | 73 NetworkingConfigServiceFactory::GetInstance(); |
| 74 #endif | 74 #endif |
| 75 #if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX) | 75 #if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX) |
| 76 NetworkingPrivateEventRouterFactory::GetInstance(); | 76 NetworkingPrivateEventRouterFactory::GetInstance(); |
| 77 #endif | 77 #endif |
| 78 PowerAPI::GetFactoryInstance(); | 78 PowerAPI::GetFactoryInstance(); |
| 79 ProcessManagerFactory::GetInstance(); | 79 ProcessManagerFactory::GetInstance(); |
| 80 RendererStartupHelperFactory::GetInstance(); | 80 RendererStartupHelperFactory::GetInstance(); |
| 81 RuntimeAPI::GetFactoryInstance(); | 81 RuntimeAPI::GetFactoryInstance(); |
| 82 StorageFrontend::GetFactoryInstance(); | 82 StorageFrontend::GetFactoryInstance(); |
| 83 SystemInfoAPI::GetFactoryInstance(); | 83 SystemInfoAPI::GetFactoryInstance(); |
| 84 UsbEventRouter::GetFactoryInstance(); | 84 UsbEventRouter::GetFactoryInstance(); |
| 85 UsbGuidMap::GetFactoryInstance(); | 85 UsbGuidMap::GetFactoryInstance(); |
| 86 #if defined(OS_CHROMEOS) | 86 #if defined(OS_CHROMEOS) |
| 87 VirtualKeyboardAPI::GetFactoryInstance(); | 87 VirtualKeyboardAPI::GetFactoryInstance(); |
| 88 WebcamPrivateAPI::GetFactoryInstance(); | 88 WebcamPrivateAPI::GetFactoryInstance(); |
| 89 #endif | 89 #endif |
| 90 WebRequestAPI::GetFactoryInstance(); | 90 WebRequestAPI::GetFactoryInstance(); |
| 91 } | 91 } |
| 92 | 92 |
| 93 } // namespace extensions | 93 } // namespace extensions |
| OLD | NEW |