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

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

Issue 13197004: Draft: InvalidationService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Passes tests Created 7 years, 8 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 #include "chrome/browser/extensions/csp_parser.h" 54 #include "chrome/browser/extensions/csp_parser.h"
55 #include "chrome/browser/extensions/extension_system_factory.h" 55 #include "chrome/browser/extensions/extension_system_factory.h"
56 #include "chrome/browser/extensions/install_tracker_factory.h" 56 #include "chrome/browser/extensions/install_tracker_factory.h"
57 #include "chrome/browser/extensions/token_cache/token_cache_service_factory.h" 57 #include "chrome/browser/extensions/token_cache/token_cache_service_factory.h"
58 #include "chrome/browser/extensions/web_accessible_resources_parser.h" 58 #include "chrome/browser/extensions/web_accessible_resources_parser.h"
59 #include "chrome/browser/favicon/favicon_service_factory.h" 59 #include "chrome/browser/favicon/favicon_service_factory.h"
60 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h" 60 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h"
61 #include "chrome/browser/google/google_url_tracker_factory.h" 61 #include "chrome/browser/google/google_url_tracker_factory.h"
62 #include "chrome/browser/history/history_service_factory.h" 62 #include "chrome/browser/history/history_service_factory.h"
63 #include "chrome/browser/history/shortcuts_backend_factory.h" 63 #include "chrome/browser/history/shortcuts_backend_factory.h"
64 #include "chrome/browser/invalidation_service_factory.h"
64 #include "chrome/browser/media_galleries/media_galleries_preferences_factory.h" 65 #include "chrome/browser/media_galleries/media_galleries_preferences_factory.h"
65 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 66 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
66 #if !defined(OS_ANDROID) 67 #if !defined(OS_ANDROID)
67 #include "chrome/browser/notifications/sync_notifier/chrome_notifier_service_fac tory.h" 68 #include "chrome/browser/notifications/sync_notifier/chrome_notifier_service_fac tory.h"
68 #endif 69 #endif
69 #include "chrome/browser/password_manager/password_store_factory.h" 70 #include "chrome/browser/password_manager/password_store_factory.h"
70 #include "chrome/browser/plugins/plugin_prefs_factory.h" 71 #include "chrome/browser/plugins/plugin_prefs_factory.h"
71 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" 72 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
72 #include "chrome/browser/predictors/predictor_database_factory.h" 73 #include "chrome/browser/predictors/predictor_database_factory.h"
73 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h" 74 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h"
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 FileBrowserPrivateAPIFactory::GetInstance(); 329 FileBrowserPrivateAPIFactory::GetInstance();
329 #endif 330 #endif
330 FindBarStateFactory::GetInstance(); 331 FindBarStateFactory::GetInstance();
331 GAIAInfoUpdateServiceFactory::GetInstance(); 332 GAIAInfoUpdateServiceFactory::GetInstance();
332 #if defined(USE_AURA) 333 #if defined(USE_AURA)
333 GesturePrefsObserverFactoryAura::GetInstance(); 334 GesturePrefsObserverFactoryAura::GetInstance();
334 #endif 335 #endif
335 GlobalErrorServiceFactory::GetInstance(); 336 GlobalErrorServiceFactory::GetInstance();
336 GoogleURLTrackerFactory::GetInstance(); 337 GoogleURLTrackerFactory::GetInstance();
337 HistoryServiceFactory::GetInstance(); 338 HistoryServiceFactory::GetInstance();
339 InvalidationServiceFactory::GetInstance();
338 #if !defined(OS_ANDROID) 340 #if !defined(OS_ANDROID)
339 notifier::ChromeNotifierServiceFactory::GetInstance(); 341 notifier::ChromeNotifierServiceFactory::GetInstance();
340 #endif 342 #endif
341 MediaGalleriesPreferencesFactory::GetInstance(); 343 MediaGalleriesPreferencesFactory::GetInstance();
342 #if defined(OS_CHROMEOS) 344 #if defined(OS_CHROMEOS)
343 chromeos::NetworkingPrivateEventRouterFactory::GetInstance(); 345 chromeos::NetworkingPrivateEventRouterFactory::GetInstance();
344 #endif 346 #endif
345 NTPResourceCacheFactory::GetInstance(); 347 NTPResourceCacheFactory::GetInstance();
346 PasswordStoreFactory::GetInstance(); 348 PasswordStoreFactory::GetInstance();
347 PersonalDataManagerFactory::GetInstance(); 349 PersonalDataManagerFactory::GetInstance();
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 } 491 }
490 492
491 result.append("\n /* Toplevel profile */\n"); 493 result.append("\n /* Toplevel profile */\n");
492 result.append(" Profile [shape=box];\n"); 494 result.append(" Profile [shape=box];\n");
493 495
494 result.append("}\n"); 496 result.append("}\n");
495 return result; 497 return result;
496 } 498 }
497 499
498 #endif 500 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698