| OLD | NEW |
| 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/bluetooth/bluetooth_api_factory.h" |
| 18 #include "chrome/browser/extensions/api/commands/command_service_factory.h" | 18 #include "chrome/browser/extensions/api/commands/command_service_factory.h" |
| 19 #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" |
| 20 #include "chrome/browser/extensions/api/idle/idle_manager_factory.h" | 20 #include "chrome/browser/extensions/api/idle/idle_manager_factory.h" |
| 21 #include "chrome/browser/extensions/api/management/management_api_factory.h" | 21 #include "chrome/browser/extensions/api/management/management_api_factory.h" |
| 22 #include "chrome/browser/extensions/api/processes/processes_api_factory.h" | 22 #include "chrome/browser/extensions/api/processes/processes_api_factory.h" |
| 23 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory
.h" | 23 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory
.h" |
| 24 #include "chrome/browser/extensions/app_restore_service_factory.h" | 24 #include "chrome/browser/extensions/app_restore_service_factory.h" |
| 25 #include "chrome/browser/extensions/extension_system_factory.h" | 25 #include "chrome/browser/extensions/extension_system_factory.h" |
| 26 #include "chrome/browser/extensions/platform_app_service_factory.h" | |
| 27 #include "chrome/browser/favicon/favicon_service_factory.h" | 26 #include "chrome/browser/favicon/favicon_service_factory.h" |
| 28 #include "chrome/browser/google/google_url_tracker_factory.h" | 27 #include "chrome/browser/google/google_url_tracker_factory.h" |
| 29 #include "chrome/browser/history/history_service_factory.h" | 28 #include "chrome/browser/history/history_service_factory.h" |
| 30 #include "chrome/browser/history/shortcuts_backend_factory.h" | 29 #include "chrome/browser/history/shortcuts_backend_factory.h" |
| 31 #include "chrome/browser/intents/web_intents_registry_factory.h" | 30 #include "chrome/browser/intents/web_intents_registry_factory.h" |
| 32 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" | 31 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" |
| 33 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 32 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| 34 #include "chrome/browser/password_manager/password_store_factory.h" | 33 #include "chrome/browser/password_manager/password_store_factory.h" |
| 35 #include "chrome/browser/plugins/plugin_prefs_factory.h" | 34 #include "chrome/browser/plugins/plugin_prefs_factory.h" |
| 36 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" | 35 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 #if defined(ENABLE_NOTIFICATIONS) | 218 #if defined(ENABLE_NOTIFICATIONS) |
| 220 DesktopNotificationServiceFactory::GetInstance(); | 219 DesktopNotificationServiceFactory::GetInstance(); |
| 221 #endif | 220 #endif |
| 222 DownloadServiceFactory::GetInstance(); | 221 DownloadServiceFactory::GetInstance(); |
| 223 #if defined(ENABLE_EXTENSIONS) | 222 #if defined(ENABLE_EXTENSIONS) |
| 224 extensions::AppRestoreServiceFactory::GetInstance(); | 223 extensions::AppRestoreServiceFactory::GetInstance(); |
| 225 extensions::BluetoothAPIFactory::GetInstance(); | 224 extensions::BluetoothAPIFactory::GetInstance(); |
| 226 extensions::CommandServiceFactory::GetInstance(); | 225 extensions::CommandServiceFactory::GetInstance(); |
| 227 extensions::ExtensionSystemFactory::GetInstance(); | 226 extensions::ExtensionSystemFactory::GetInstance(); |
| 228 extensions::IdleManagerFactory::GetInstance(); | 227 extensions::IdleManagerFactory::GetInstance(); |
| 229 extensions::PlatformAppServiceFactory::GetInstance(); | |
| 230 extensions::ProcessesAPIFactory::GetInstance(); | 228 extensions::ProcessesAPIFactory::GetInstance(); |
| 231 extensions::SuggestedLinksRegistryFactory::GetInstance(); | 229 extensions::SuggestedLinksRegistryFactory::GetInstance(); |
| 232 extensions::TabCaptureRegistryFactory::GetInstance(); | 230 extensions::TabCaptureRegistryFactory::GetInstance(); |
| 233 ExtensionManagementAPIFactory::GetInstance(); | 231 ExtensionManagementAPIFactory::GetInstance(); |
| 234 #endif | 232 #endif |
| 235 FaviconServiceFactory::GetInstance(); | 233 FaviconServiceFactory::GetInstance(); |
| 236 FindBarStateFactory::GetInstance(); | 234 FindBarStateFactory::GetInstance(); |
| 237 #if defined(USE_AURA) | 235 #if defined(USE_AURA) |
| 238 GesturePrefsObserverFactoryAura::GetInstance(); | 236 GesturePrefsObserverFactoryAura::GetInstance(); |
| 239 #endif | 237 #endif |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 } | 391 } |
| 394 | 392 |
| 395 result.append("\n /* Toplevel profile */\n"); | 393 result.append("\n /* Toplevel profile */\n"); |
| 396 result.append(" Profile [shape=box];\n"); | 394 result.append(" Profile [shape=box];\n"); |
| 397 | 395 |
| 398 result.append("}\n"); | 396 result.append("}\n"); |
| 399 return result; | 397 return result; |
| 400 } | 398 } |
| 401 | 399 |
| 402 #endif | 400 #endif |
| OLD | NEW |