| 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 "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "extensions/browser/api/alarms/alarm_manager.h" | 8 #include "extensions/browser/api/alarms/alarm_manager.h" |
| 9 #include "extensions/browser/api/api_resource_manager.h" | 9 #include "extensions/browser/api/api_resource_manager.h" |
| 10 #include "extensions/browser/api/audio/audio_api.h" | 10 #include "extensions/browser/api/audio/audio_api.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 AlarmManager::GetFactoryInstance(); | 49 AlarmManager::GetFactoryInstance(); |
| 50 ApiResourceManager<ResumableTCPServerSocket>::GetFactoryInstance(); | 50 ApiResourceManager<ResumableTCPServerSocket>::GetFactoryInstance(); |
| 51 ApiResourceManager<ResumableTCPSocket>::GetFactoryInstance(); | 51 ApiResourceManager<ResumableTCPSocket>::GetFactoryInstance(); |
| 52 ApiResourceManager<ResumableUDPSocket>::GetFactoryInstance(); | 52 ApiResourceManager<ResumableUDPSocket>::GetFactoryInstance(); |
| 53 ApiResourceManager<SerialConnection>::GetFactoryInstance(); | 53 ApiResourceManager<SerialConnection>::GetFactoryInstance(); |
| 54 ApiResourceManager<Socket>::GetFactoryInstance(); | 54 ApiResourceManager<Socket>::GetFactoryInstance(); |
| 55 ApiResourceManager<UsbDeviceResource>::GetFactoryInstance(); | 55 ApiResourceManager<UsbDeviceResource>::GetFactoryInstance(); |
| 56 AudioAPI::GetFactoryInstance(); | 56 AudioAPI::GetFactoryInstance(); |
| 57 BluetoothAPI::GetFactoryInstance(); | 57 BluetoothAPI::GetFactoryInstance(); |
| 58 BluetoothPrivateAPI::GetFactoryInstance(); | 58 BluetoothPrivateAPI::GetFactoryInstance(); |
| 59 #if defined(OS_CHROMEOS) |
| 59 ClipboardAPI::GetFactoryInstance(); | 60 ClipboardAPI::GetFactoryInstance(); |
| 60 #if defined(OS_CHROMEOS) | |
| 61 chromeos::VpnServiceFactory::GetInstance(); | 61 chromeos::VpnServiceFactory::GetInstance(); |
| 62 #endif | 62 #endif |
| 63 api::BluetoothSocketEventDispatcher::GetFactoryInstance(); | 63 api::BluetoothSocketEventDispatcher::GetFactoryInstance(); |
| 64 api::TCPServerSocketEventDispatcher::GetFactoryInstance(); | 64 api::TCPServerSocketEventDispatcher::GetFactoryInstance(); |
| 65 api::TCPSocketEventDispatcher::GetFactoryInstance(); | 65 api::TCPSocketEventDispatcher::GetFactoryInstance(); |
| 66 api::UDPSocketEventDispatcher::GetFactoryInstance(); | 66 api::UDPSocketEventDispatcher::GetFactoryInstance(); |
| 67 DeclarativeUserScriptManagerFactory::GetInstance(); | 67 DeclarativeUserScriptManagerFactory::GetInstance(); |
| 68 DisplaySourceEventRouterFactory::GetInstance(); | 68 DisplaySourceEventRouterFactory::GetInstance(); |
| 69 EventRouterFactory::GetInstance(); | 69 EventRouterFactory::GetInstance(); |
| 70 ExtensionMessageFilter::EnsureShutdownNotifierFactoryBuilt(); | 70 ExtensionMessageFilter::EnsureShutdownNotifierFactoryBuilt(); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 87 UsbEventRouter::GetFactoryInstance(); | 87 UsbEventRouter::GetFactoryInstance(); |
| 88 UsbGuidMap::GetFactoryInstance(); | 88 UsbGuidMap::GetFactoryInstance(); |
| 89 #if defined(OS_CHROMEOS) | 89 #if defined(OS_CHROMEOS) |
| 90 VirtualKeyboardAPI::GetFactoryInstance(); | 90 VirtualKeyboardAPI::GetFactoryInstance(); |
| 91 WebcamPrivateAPI::GetFactoryInstance(); | 91 WebcamPrivateAPI::GetFactoryInstance(); |
| 92 #endif | 92 #endif |
| 93 WebRequestAPI::GetFactoryInstance(); | 93 WebRequestAPI::GetFactoryInstance(); |
| 94 } | 94 } |
| 95 | 95 |
| 96 } // namespace extensions | 96 } // namespace extensions |
| OLD | NEW |