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

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

Issue 2379573008: Add SetImageData api to chrome.clipboard. (Closed)
Patch Set: Fix nits. Created 3 years, 11 months 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 "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
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
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
OLDNEW
« no previous file with comments | « extensions/browser/api/extensions_api_client.cc ('k') | extensions/browser/extension_function_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698