Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(783)

Side by Side Diff: extensions/browser/browser_context_keyed_service_factories.cc

Issue 1410093008: Introduce chrome.displaySource API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from Antony Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
11 #include "extensions/browser/api/bluetooth/bluetooth_private_api.h" 11 #include "extensions/browser/api/bluetooth/bluetooth_private_api.h"
12 #include "extensions/browser/api/bluetooth_socket/bluetooth_socket_event_dispatc her.h" 12 #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"
13 #include "extensions/browser/api/hid/hid_device_manager.h" 14 #include "extensions/browser/api/hid/hid_device_manager.h"
14 #include "extensions/browser/api/idle/idle_manager_factory.h" 15 #include "extensions/browser/api/idle/idle_manager_factory.h"
15 #include "extensions/browser/api/management/management_api.h" 16 #include "extensions/browser/api/management/management_api.h"
16 #include "extensions/browser/api/networking_config/networking_config_service_fac tory.h" 17 #include "extensions/browser/api/networking_config/networking_config_service_fac tory.h"
17 #include "extensions/browser/api/networking_private/networking_private_event_rou ter_factory.h" 18 #include "extensions/browser/api/networking_private/networking_private_event_rou ter_factory.h"
18 #include "extensions/browser/api/power/power_api.h" 19 #include "extensions/browser/api/power/power_api.h"
19 #include "extensions/browser/api/runtime/runtime_api.h" 20 #include "extensions/browser/api/runtime/runtime_api.h"
20 #include "extensions/browser/api/serial/serial_connection.h" 21 #include "extensions/browser/api/serial/serial_connection.h"
21 #include "extensions/browser/api/socket/socket.h" 22 #include "extensions/browser/api/socket/socket.h"
22 #include "extensions/browser/api/socket/tcp_socket.h" 23 #include "extensions/browser/api/socket/tcp_socket.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 BluetoothAPI::GetFactoryInstance(); 55 BluetoothAPI::GetFactoryInstance();
55 BluetoothPrivateAPI::GetFactoryInstance(); 56 BluetoothPrivateAPI::GetFactoryInstance();
56 #if defined(OS_CHROMEOS) 57 #if defined(OS_CHROMEOS)
57 chromeos::VpnServiceFactory::GetInstance(); 58 chromeos::VpnServiceFactory::GetInstance();
58 #endif 59 #endif
59 api::BluetoothSocketEventDispatcher::GetFactoryInstance(); 60 api::BluetoothSocketEventDispatcher::GetFactoryInstance();
60 api::TCPServerSocketEventDispatcher::GetFactoryInstance(); 61 api::TCPServerSocketEventDispatcher::GetFactoryInstance();
61 api::TCPSocketEventDispatcher::GetFactoryInstance(); 62 api::TCPSocketEventDispatcher::GetFactoryInstance();
62 api::UDPSocketEventDispatcher::GetFactoryInstance(); 63 api::UDPSocketEventDispatcher::GetFactoryInstance();
63 DeclarativeUserScriptManagerFactory::GetInstance(); 64 DeclarativeUserScriptManagerFactory::GetInstance();
65 DisplaySourceEventRouterFactory::GetInstance();
64 EventRouterFactory::GetInstance(); 66 EventRouterFactory::GetInstance();
65 ExtensionMessageFilter::EnsureShutdownNotifierFactoryBuilt(); 67 ExtensionMessageFilter::EnsureShutdownNotifierFactoryBuilt();
66 ExtensionPrefsFactory::GetInstance(); 68 ExtensionPrefsFactory::GetInstance();
67 HidDeviceManager::GetFactoryInstance(); 69 HidDeviceManager::GetFactoryInstance();
68 IdleManagerFactory::GetInstance(); 70 IdleManagerFactory::GetInstance();
69 ManagementAPI::GetFactoryInstance(); 71 ManagementAPI::GetFactoryInstance();
70 #if defined(OS_CHROMEOS) 72 #if defined(OS_CHROMEOS)
71 NetworkingConfigServiceFactory::GetInstance(); 73 NetworkingConfigServiceFactory::GetInstance();
72 #endif 74 #endif
73 #if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX) 75 #if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX)
74 NetworkingPrivateEventRouterFactory::GetInstance(); 76 NetworkingPrivateEventRouterFactory::GetInstance();
75 #endif 77 #endif
76 PowerAPI::GetFactoryInstance(); 78 PowerAPI::GetFactoryInstance();
77 ProcessManagerFactory::GetInstance(); 79 ProcessManagerFactory::GetInstance();
78 RendererStartupHelperFactory::GetInstance(); 80 RendererStartupHelperFactory::GetInstance();
79 RuntimeAPI::GetFactoryInstance(); 81 RuntimeAPI::GetFactoryInstance();
80 StorageFrontend::GetFactoryInstance(); 82 StorageFrontend::GetFactoryInstance();
81 SystemInfoAPI::GetFactoryInstance(); 83 SystemInfoAPI::GetFactoryInstance();
82 UsbEventRouter::GetFactoryInstance(); 84 UsbEventRouter::GetFactoryInstance();
83 UsbGuidMap::GetFactoryInstance(); 85 UsbGuidMap::GetFactoryInstance();
84 #if defined(OS_CHROMEOS) 86 #if defined(OS_CHROMEOS)
85 VirtualKeyboardAPI::GetFactoryInstance(); 87 VirtualKeyboardAPI::GetFactoryInstance();
86 WebcamPrivateAPI::GetFactoryInstance(); 88 WebcamPrivateAPI::GetFactoryInstance();
87 #endif 89 #endif
88 WebRequestAPI::GetFactoryInstance(); 90 WebRequestAPI::GetFactoryInstance();
89 } 91 }
90 92
91 } // namespace extensions 93 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698