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 "extensions/browser/api/alarms/alarm_manager.h" | 8 #include "extensions/browser/api/alarms/alarm_manager.h" |
8 #include "extensions/browser/api/api_resource_manager.h" | 9 #include "extensions/browser/api/api_resource_manager.h" |
9 #include "extensions/browser/api/audio/audio_api.h" | 10 #include "extensions/browser/api/audio/audio_api.h" |
10 #include "extensions/browser/api/bluetooth/bluetooth_api.h" | 11 #include "extensions/browser/api/bluetooth/bluetooth_api.h" |
11 #include "extensions/browser/api/bluetooth/bluetooth_private_api.h" | 12 #include "extensions/browser/api/bluetooth/bluetooth_private_api.h" |
12 #include "extensions/browser/api/bluetooth_socket/bluetooth_socket_event_dispatc
her.h" | 13 #include "extensions/browser/api/bluetooth_socket/bluetooth_socket_event_dispatc
her.h" |
13 #include "extensions/browser/api/display_source/display_source_event_router_fact
ory.h" | 14 #include "extensions/browser/api/display_source/display_source_event_router_fact
ory.h" |
14 #include "extensions/browser/api/hid/hid_device_manager.h" | 15 #include "extensions/browser/api/hid/hid_device_manager.h" |
15 #include "extensions/browser/api/idle/idle_manager_factory.h" | 16 #include "extensions/browser/api/idle/idle_manager_factory.h" |
16 #include "extensions/browser/api/management/management_api.h" | 17 #include "extensions/browser/api/management/management_api.h" |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 UsbEventRouter::GetFactoryInstance(); | 85 UsbEventRouter::GetFactoryInstance(); |
85 UsbGuidMap::GetFactoryInstance(); | 86 UsbGuidMap::GetFactoryInstance(); |
86 #if defined(OS_CHROMEOS) | 87 #if defined(OS_CHROMEOS) |
87 VirtualKeyboardAPI::GetFactoryInstance(); | 88 VirtualKeyboardAPI::GetFactoryInstance(); |
88 WebcamPrivateAPI::GetFactoryInstance(); | 89 WebcamPrivateAPI::GetFactoryInstance(); |
89 #endif | 90 #endif |
90 WebRequestAPI::GetFactoryInstance(); | 91 WebRequestAPI::GetFactoryInstance(); |
91 } | 92 } |
92 | 93 |
93 } // namespace extensions | 94 } // namespace extensions |
OLD | NEW |