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

Side by Side Diff: chrome/browser/profiles/profile_dependency_manager.cc

Issue 11360200: Decouple bluetooth_event_router from extension_system. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Removed MockBluetoothSocket Created 8 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
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/profiles/profile_dependency_manager.h" 5 #include "chrome/browser/profiles/profile_dependency_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <iterator> 9 #include <iterator>
10 10
11 #include "chrome/browser/autofill/personal_data_manager_factory.h" 11 #include "chrome/browser/autofill/personal_data_manager_factory.h"
12 #include "chrome/browser/background/background_contents_service_factory.h" 12 #include "chrome/browser/background/background_contents_service_factory.h"
13 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 13 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
14 #include "chrome/browser/content_settings/cookie_settings.h" 14 #include "chrome/browser/content_settings/cookie_settings.h"
15 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" 15 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
16 #include "chrome/browser/download/download_service_factory.h" 16 #include "chrome/browser/download/download_service_factory.h"
17 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_factory.h"
17 #include "chrome/browser/extensions/api/commands/command_service_factory.h" 18 #include "chrome/browser/extensions/api/commands/command_service_factory.h"
18 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto ry.h" 19 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto ry.h"
19 #include "chrome/browser/extensions/api/processes/processes_api_factory.h" 20 #include "chrome/browser/extensions/api/processes/processes_api_factory.h"
20 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory .h" 21 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory .h"
21 #include "chrome/browser/extensions/app_restore_service_factory.h" 22 #include "chrome/browser/extensions/app_restore_service_factory.h"
22 #include "chrome/browser/extensions/extension_system_factory.h" 23 #include "chrome/browser/extensions/extension_system_factory.h"
23 #include "chrome/browser/favicon/favicon_service_factory.h" 24 #include "chrome/browser/favicon/favicon_service_factory.h"
24 #include "chrome/browser/google/google_url_tracker_factory.h" 25 #include "chrome/browser/google/google_url_tracker_factory.h"
25 #include "chrome/browser/history/history_service_factory.h" 26 #include "chrome/browser/history/history_service_factory.h"
26 #include "chrome/browser/history/shortcuts_backend_factory.h" 27 #include "chrome/browser/history/shortcuts_backend_factory.h"
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 #if defined(ENABLE_PRINTING) 215 #if defined(ENABLE_PRINTING)
215 CloudPrintProxyServiceFactory::GetInstance(); 216 CloudPrintProxyServiceFactory::GetInstance();
216 #endif 217 #endif
217 CookieSettings::Factory::GetInstance(); 218 CookieSettings::Factory::GetInstance();
218 #if defined(ENABLE_NOTIFICATIONS) 219 #if defined(ENABLE_NOTIFICATIONS)
219 DesktopNotificationServiceFactory::GetInstance(); 220 DesktopNotificationServiceFactory::GetInstance();
220 #endif 221 #endif
221 DownloadServiceFactory::GetInstance(); 222 DownloadServiceFactory::GetInstance();
222 #if defined(ENABLE_EXTENSIONS) 223 #if defined(ENABLE_EXTENSIONS)
223 extensions::AppRestoreServiceFactory::GetInstance(); 224 extensions::AppRestoreServiceFactory::GetInstance();
225 extensions::BluetoothAPIFactory::GetInstance();
224 extensions::CommandServiceFactory::GetInstance(); 226 extensions::CommandServiceFactory::GetInstance();
225 extensions::SuggestedLinksRegistryFactory::GetInstance(); 227 extensions::SuggestedLinksRegistryFactory::GetInstance();
226 extensions::ExtensionSystemFactory::GetInstance(); 228 extensions::ExtensionSystemFactory::GetInstance();
227 extensions::ProcessesAPIFactory::GetInstance(); 229 extensions::ProcessesAPIFactory::GetInstance();
228 extensions::TabCaptureRegistryFactory::GetInstance(); 230 extensions::TabCaptureRegistryFactory::GetInstance();
229 #endif 231 #endif
230 FaviconServiceFactory::GetInstance(); 232 FaviconServiceFactory::GetInstance();
231 FindBarStateFactory::GetInstance(); 233 FindBarStateFactory::GetInstance();
232 #if defined(USE_AURA) 234 #if defined(USE_AURA)
233 GesturePrefsObserverFactoryAura::GetInstance(); 235 GesturePrefsObserverFactoryAura::GetInstance();
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 } 393 }
392 394
393 result.append("\n /* Toplevel profile */\n"); 395 result.append("\n /* Toplevel profile */\n");
394 result.append(" Profile [shape=box];\n"); 396 result.append(" Profile [shape=box];\n");
395 397
396 result.append("}\n"); 398 result.append("}\n");
397 return result; 399 return result;
398 } 400 }
399 401
400 #endif 402 #endif
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698