| 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/captive_portal/captive_portal_service_factory.h" | 14 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
| 15 #include "chrome/browser/content_settings/cookie_settings.h" | 15 #include "chrome/browser/content_settings/cookie_settings.h" |
| 16 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" |
| 16 #include "chrome/browser/download/download_service_factory.h" | 17 #include "chrome/browser/download/download_service_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/extension_system_factory.h" | 20 #include "chrome/browser/extensions/extension_system_factory.h" |
| 20 #include "chrome/browser/google/google_url_tracker_factory.h" | 21 #include "chrome/browser/google/google_url_tracker_factory.h" |
| 21 #include "chrome/browser/history/history_service_factory.h" | 22 #include "chrome/browser/history/history_service_factory.h" |
| 22 #include "chrome/browser/history/shortcuts_backend_factory.h" | 23 #include "chrome/browser/history/shortcuts_backend_factory.h" |
| 23 #include "chrome/browser/intents/web_intents_registry_factory.h" | 24 #include "chrome/browser/intents/web_intents_registry_factory.h" |
| 24 #include "chrome/browser/media_gallery/media_gallery_registry_factory.h" | 25 #include "chrome/browser/media_gallery/media_gallery_registry_factory.h" |
| 25 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 26 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 PersonalDataManagerFactory::GetInstance(); | 227 PersonalDataManagerFactory::GetInstance(); |
| 227 #if !defined(OS_ANDROID) | 228 #if !defined(OS_ANDROID) |
| 228 PinnedTabServiceFactory::GetInstance(); | 229 PinnedTabServiceFactory::GetInstance(); |
| 229 #endif | 230 #endif |
| 230 PluginPrefsFactory::GetInstance(); | 231 PluginPrefsFactory::GetInstance(); |
| 231 predictors::AutocompleteActionPredictorFactory::GetInstance(); | 232 predictors::AutocompleteActionPredictorFactory::GetInstance(); |
| 232 predictors::PredictorDatabaseFactory::GetInstance(); | 233 predictors::PredictorDatabaseFactory::GetInstance(); |
| 233 predictors::ResourcePrefetchPredictorFactory::GetInstance(); | 234 predictors::ResourcePrefetchPredictorFactory::GetInstance(); |
| 234 prerender::PrerenderManagerFactory::GetInstance(); | 235 prerender::PrerenderManagerFactory::GetInstance(); |
| 235 ProfileSyncServiceFactory::GetInstance(); | 236 ProfileSyncServiceFactory::GetInstance(); |
| 237 ProtocolHandlerRegistryFactory::GetInstance(); |
| 236 #if defined(ENABLE_PROTECTOR_SERVICE) | 238 #if defined(ENABLE_PROTECTOR_SERVICE) |
| 237 protector::ProtectorServiceFactory::GetInstance(); | 239 protector::ProtectorServiceFactory::GetInstance(); |
| 238 #endif | 240 #endif |
| 239 #if defined(ENABLE_SESSION_SERVICE) | 241 #if defined(ENABLE_SESSION_SERVICE) |
| 240 SessionServiceFactory::GetInstance(); | 242 SessionServiceFactory::GetInstance(); |
| 241 #endif | 243 #endif |
| 242 ShortcutsBackendFactory::GetInstance(); | 244 ShortcutsBackendFactory::GetInstance(); |
| 243 SigninManagerFactory::GetInstance(); | 245 SigninManagerFactory::GetInstance(); |
| 244 #if defined(ENABLE_INPUT_SPEECH) | 246 #if defined(ENABLE_INPUT_SPEECH) |
| 245 SpeechInputExtensionManager::InitializeFactory(); | 247 SpeechInputExtensionManager::InitializeFactory(); |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 } | 365 } |
| 364 | 366 |
| 365 result.append("\n /* Toplevel profile */\n"); | 367 result.append("\n /* Toplevel profile */\n"); |
| 366 result.append(" Profile [shape=box];\n"); | 368 result.append(" Profile [shape=box];\n"); |
| 367 | 369 |
| 368 result.append("}\n"); | 370 result.append("}\n"); |
| 369 return result; | 371 return result; |
| 370 } | 372 } |
| 371 | 373 |
| 372 #endif | 374 #endif |
| OLD | NEW |