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

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

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adressed comments by kalman, stevenjb and asvitkine Created 5 years, 10 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 "extensions/browser/api/api_resource_manager.h" 7 #include "extensions/browser/api/api_resource_manager.h"
8 #include "extensions/browser/api/audio/audio_api.h" 8 #include "extensions/browser/api/audio/audio_api.h"
9 #include "extensions/browser/api/hid/hid_device_manager.h" 9 #include "extensions/browser/api/hid/hid_device_manager.h"
10 #include "extensions/browser/api/idle/idle_manager_factory.h" 10 #include "extensions/browser/api/idle/idle_manager_factory.h"
11 #include "extensions/browser/api/management/management_api.h" 11 #include "extensions/browser/api/management/management_api.h"
12 #include "extensions/browser/api/networking_config/networking_config_service_fac tory.h"
12 #include "extensions/browser/api/networking_private/networking_private_event_rou ter_factory.h" 13 #include "extensions/browser/api/networking_private/networking_private_event_rou ter_factory.h"
13 #include "extensions/browser/api/runtime/runtime_api.h" 14 #include "extensions/browser/api/runtime/runtime_api.h"
14 #include "extensions/browser/api/serial/serial_connection.h" 15 #include "extensions/browser/api/serial/serial_connection.h"
15 #include "extensions/browser/api/socket/socket.h" 16 #include "extensions/browser/api/socket/socket.h"
16 #include "extensions/browser/api/socket/tcp_socket.h" 17 #include "extensions/browser/api/socket/tcp_socket.h"
17 #include "extensions/browser/api/socket/udp_socket.h" 18 #include "extensions/browser/api/socket/udp_socket.h"
18 #include "extensions/browser/api/sockets_tcp/tcp_socket_event_dispatcher.h" 19 #include "extensions/browser/api/sockets_tcp/tcp_socket_event_dispatcher.h"
19 #include "extensions/browser/api/sockets_tcp_server/tcp_server_socket_event_disp atcher.h" 20 #include "extensions/browser/api/sockets_tcp_server/tcp_server_socket_event_disp atcher.h"
20 #include "extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h" 21 #include "extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.h"
21 #include "extensions/browser/api/storage/storage_frontend.h" 22 #include "extensions/browser/api/storage/storage_frontend.h"
(...skipping 16 matching lines...) Expand all
38 #if defined(OS_CHROMEOS) 39 #if defined(OS_CHROMEOS)
39 chromeos::VpnServiceFactory::GetInstance(); 40 chromeos::VpnServiceFactory::GetInstance();
40 #endif 41 #endif
41 core_api::TCPServerSocketEventDispatcher::GetFactoryInstance(); 42 core_api::TCPServerSocketEventDispatcher::GetFactoryInstance();
42 core_api::TCPSocketEventDispatcher::GetFactoryInstance(); 43 core_api::TCPSocketEventDispatcher::GetFactoryInstance();
43 core_api::UDPSocketEventDispatcher::GetFactoryInstance(); 44 core_api::UDPSocketEventDispatcher::GetFactoryInstance();
44 ExtensionPrefsFactory::GetInstance(); 45 ExtensionPrefsFactory::GetInstance();
45 HidDeviceManager::GetFactoryInstance(); 46 HidDeviceManager::GetFactoryInstance();
46 IdleManagerFactory::GetInstance(); 47 IdleManagerFactory::GetInstance();
47 ManagementAPI::GetFactoryInstance(); 48 ManagementAPI::GetFactoryInstance();
49 #if defined(OS_CHROMEOS)
50 NetworkingConfigServiceFactory::GetInstance();
not at google - send to devlin 2015/02/02 18:16:09 rockot/yoz/reillyg - I just had this thought - why
pneubeck (no reviews) 2015/02/02 18:18:33 KeyedService factories _must_ be created before th
not at google - send to devlin 2015/02/02 18:33:17 Ah right, this is just registering dependencies. P
51 #endif
48 #if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX) 52 #if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX)
49 NetworkingPrivateEventRouterFactory::GetInstance(); 53 NetworkingPrivateEventRouterFactory::GetInstance();
50 #endif 54 #endif
51 ProcessManagerFactory::GetInstance(); 55 ProcessManagerFactory::GetInstance();
52 RendererStartupHelperFactory::GetInstance(); 56 RendererStartupHelperFactory::GetInstance();
53 RuntimeAPI::GetFactoryInstance(); 57 RuntimeAPI::GetFactoryInstance();
54 StorageFrontend::GetFactoryInstance(); 58 StorageFrontend::GetFactoryInstance();
55 SystemInfoAPI::GetFactoryInstance(); 59 SystemInfoAPI::GetFactoryInstance();
56 UsbEventRouter::GetFactoryInstance(); 60 UsbEventRouter::GetFactoryInstance();
57 } 61 }
58 62
59 } // namespace extensions 63 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698