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 |
(...skipping 19 matching lines...) Expand all Loading... |
30 #include "chrome/browser/extensions/api/preference/preference_api_factory.h" | 30 #include "chrome/browser/extensions/api/preference/preference_api_factory.h" |
31 #include "chrome/browser/extensions/api/processes/processes_api.h" | 31 #include "chrome/browser/extensions/api/processes/processes_api.h" |
32 #include "chrome/browser/extensions/api/profile_keyed_api_factory.h" | 32 #include "chrome/browser/extensions/api/profile_keyed_api_factory.h" |
33 #include "chrome/browser/extensions/api/push_messaging/push_messaging_api_factor
y.h" | 33 #include "chrome/browser/extensions/api/push_messaging/push_messaging_api_factor
y.h" |
34 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory
.h" | 34 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory
.h" |
35 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h" | 35 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h" |
36 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_factor
y.h" | 36 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_factor
y.h" |
37 #include "chrome/browser/extensions/app_restore_service_factory.h" | 37 #include "chrome/browser/extensions/app_restore_service_factory.h" |
38 #include "chrome/browser/extensions/extension_system_factory.h" | 38 #include "chrome/browser/extensions/extension_system_factory.h" |
39 #include "chrome/browser/favicon/favicon_service_factory.h" | 39 #include "chrome/browser/favicon/favicon_service_factory.h" |
| 40 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto
ry.h" |
40 #include "chrome/browser/google/google_url_tracker_factory.h" | 41 #include "chrome/browser/google/google_url_tracker_factory.h" |
41 #include "chrome/browser/history/history_service_factory.h" | 42 #include "chrome/browser/history/history_service_factory.h" |
42 #include "chrome/browser/history/shortcuts_backend_factory.h" | 43 #include "chrome/browser/history/shortcuts_backend_factory.h" |
43 #include "chrome/browser/intents/web_intents_registry_factory.h" | 44 #include "chrome/browser/intents/web_intents_registry_factory.h" |
44 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" | 45 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" |
45 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 46 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
46 #include "chrome/browser/password_manager/password_store_factory.h" | 47 #include "chrome/browser/password_manager/password_store_factory.h" |
47 #include "chrome/browser/plugins/plugin_prefs_factory.h" | 48 #include "chrome/browser/plugins/plugin_prefs_factory.h" |
48 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" | 49 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" |
49 #include "chrome/browser/predictors/predictor_database_factory.h" | 50 #include "chrome/browser/predictors/predictor_database_factory.h" |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 | 227 |
227 AboutSigninInternalsFactory::GetInstance(); | 228 AboutSigninInternalsFactory::GetInstance(); |
228 | 229 |
229 #if defined(ENABLE_BACKGROUND) | 230 #if defined(ENABLE_BACKGROUND) |
230 BackgroundContentsServiceFactory::GetInstance(); | 231 BackgroundContentsServiceFactory::GetInstance(); |
231 #endif | 232 #endif |
232 BookmarkModelFactory::GetInstance(); | 233 BookmarkModelFactory::GetInstance(); |
233 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 234 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
234 captive_portal::CaptivePortalServiceFactory::GetInstance(); | 235 captive_portal::CaptivePortalServiceFactory::GetInstance(); |
235 #endif | 236 #endif |
| 237 ChromeGeolocationPermissionContextFactory::GetInstance(); |
236 ChromeURLDataManagerFactory::GetInstance(); | 238 ChromeURLDataManagerFactory::GetInstance(); |
237 #if defined(ENABLE_PRINTING) | 239 #if defined(ENABLE_PRINTING) |
238 CloudPrintProxyServiceFactory::GetInstance(); | 240 CloudPrintProxyServiceFactory::GetInstance(); |
239 #endif | 241 #endif |
240 CookieSettings::Factory::GetInstance(); | 242 CookieSettings::Factory::GetInstance(); |
241 #if defined(ENABLE_NOTIFICATIONS) | 243 #if defined(ENABLE_NOTIFICATIONS) |
242 DesktopNotificationServiceFactory::GetInstance(); | 244 DesktopNotificationServiceFactory::GetInstance(); |
243 #endif | 245 #endif |
244 DownloadServiceFactory::GetInstance(); | 246 DownloadServiceFactory::GetInstance(); |
245 #if defined(ENABLE_EXTENSIONS) | 247 #if defined(ENABLE_EXTENSIONS) |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 } | 434 } |
433 | 435 |
434 result.append("\n /* Toplevel profile */\n"); | 436 result.append("\n /* Toplevel profile */\n"); |
435 result.append(" Profile [shape=box];\n"); | 437 result.append(" Profile [shape=box];\n"); |
436 | 438 |
437 result.append("}\n"); | 439 result.append("}\n"); |
438 return result; | 440 return result; |
439 } | 441 } |
440 | 442 |
441 #endif | 443 #endif |
OLD | NEW |