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 27 matching lines...) Expand all Loading... |
38 #include "chrome/browser/extensions/manifest_url_parser.h" | 38 #include "chrome/browser/extensions/manifest_url_parser.h" |
39 #include "chrome/browser/extensions/web_intents_parser.h" | 39 #include "chrome/browser/extensions/web_intents_parser.h" |
40 #include "chrome/browser/favicon/favicon_service_factory.h" | 40 #include "chrome/browser/favicon/favicon_service_factory.h" |
41 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto
ry.h" | 41 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto
ry.h" |
42 #include "chrome/browser/google/google_url_tracker_factory.h" | 42 #include "chrome/browser/google/google_url_tracker_factory.h" |
43 #include "chrome/browser/history/history_service_factory.h" | 43 #include "chrome/browser/history/history_service_factory.h" |
44 #include "chrome/browser/history/shortcuts_backend_factory.h" | 44 #include "chrome/browser/history/shortcuts_backend_factory.h" |
45 #include "chrome/browser/intents/web_intents_registry_factory.h" | 45 #include "chrome/browser/intents/web_intents_registry_factory.h" |
46 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" | 46 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" |
47 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 47 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| 48 #include "chrome/browser/notifier/chrome_notifier_service_factory.h" |
48 #include "chrome/browser/password_manager/password_store_factory.h" | 49 #include "chrome/browser/password_manager/password_store_factory.h" |
49 #include "chrome/browser/plugins/plugin_prefs_factory.h" | 50 #include "chrome/browser/plugins/plugin_prefs_factory.h" |
50 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" | 51 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" |
51 #include "chrome/browser/predictors/predictor_database_factory.h" | 52 #include "chrome/browser/predictors/predictor_database_factory.h" |
52 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h" | 53 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h" |
53 #include "chrome/browser/prerender/prerender_link_manager_factory.h" | 54 #include "chrome/browser/prerender/prerender_link_manager_factory.h" |
54 #include "chrome/browser/prerender/prerender_manager_factory.h" | 55 #include "chrome/browser/prerender/prerender_manager_factory.h" |
55 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" | 56 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" |
56 #include "chrome/browser/profiles/gaia_info_update_service_factory.h" | 57 #include "chrome/browser/profiles/gaia_info_update_service_factory.h" |
57 #include "chrome/browser/profiles/profile.h" | 58 #include "chrome/browser/profiles/profile.h" |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 FileBrowserPrivateAPIFactory::GetInstance(); | 286 FileBrowserPrivateAPIFactory::GetInstance(); |
286 #endif | 287 #endif |
287 FindBarStateFactory::GetInstance(); | 288 FindBarStateFactory::GetInstance(); |
288 GAIAInfoUpdateServiceFactory::GetInstance(); | 289 GAIAInfoUpdateServiceFactory::GetInstance(); |
289 #if defined(USE_AURA) | 290 #if defined(USE_AURA) |
290 GesturePrefsObserverFactoryAura::GetInstance(); | 291 GesturePrefsObserverFactoryAura::GetInstance(); |
291 #endif | 292 #endif |
292 GlobalErrorServiceFactory::GetInstance(); | 293 GlobalErrorServiceFactory::GetInstance(); |
293 GoogleURLTrackerFactory::GetInstance(); | 294 GoogleURLTrackerFactory::GetInstance(); |
294 HistoryServiceFactory::GetInstance(); | 295 HistoryServiceFactory::GetInstance(); |
| 296 notifier::ChromeNotifierServiceFactory::GetInstance(); |
295 MediaGalleriesPreferencesFactory::GetInstance(); | 297 MediaGalleriesPreferencesFactory::GetInstance(); |
296 NTPResourceCacheFactory::GetInstance(); | 298 NTPResourceCacheFactory::GetInstance(); |
297 PasswordStoreFactory::GetInstance(); | 299 PasswordStoreFactory::GetInstance(); |
298 PersonalDataManagerFactory::GetInstance(); | 300 PersonalDataManagerFactory::GetInstance(); |
299 #if !defined(OS_ANDROID) | 301 #if !defined(OS_ANDROID) |
300 PinnedTabServiceFactory::GetInstance(); | 302 PinnedTabServiceFactory::GetInstance(); |
301 #endif | 303 #endif |
302 #if defined(ENABLE_PLUGINS) | 304 #if defined(ENABLE_PLUGINS) |
303 PluginPrefsFactory::GetInstance(); | 305 PluginPrefsFactory::GetInstance(); |
304 #endif | 306 #endif |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 } | 445 } |
444 | 446 |
445 result.append("\n /* Toplevel profile */\n"); | 447 result.append("\n /* Toplevel profile */\n"); |
446 result.append(" Profile [shape=box];\n"); | 448 result.append(" Profile [shape=box];\n"); |
447 | 449 |
448 result.append("}\n"); | 450 result.append("}\n"); |
449 return result; | 451 return result; |
450 } | 452 } |
451 | 453 |
452 #endif | 454 #endif |
OLD | NEW |