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

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

Issue 11745024: Synced Notification Sync Change Processor (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Synced Notification Change Processor - remove unused header Created 7 years, 10 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
OLDNEW
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "chrome/browser/extensions/extension_system_factory.h" 44 #include "chrome/browser/extensions/extension_system_factory.h"
45 #include "chrome/browser/extensions/manifest_url_parser.h" 45 #include "chrome/browser/extensions/manifest_url_parser.h"
46 #include "chrome/browser/extensions/web_accessible_resources_parser.h" 46 #include "chrome/browser/extensions/web_accessible_resources_parser.h"
47 #include "chrome/browser/favicon/favicon_service_factory.h" 47 #include "chrome/browser/favicon/favicon_service_factory.h"
48 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h" 48 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h"
49 #include "chrome/browser/google/google_url_tracker_factory.h" 49 #include "chrome/browser/google/google_url_tracker_factory.h"
50 #include "chrome/browser/history/history_service_factory.h" 50 #include "chrome/browser/history/history_service_factory.h"
51 #include "chrome/browser/history/shortcuts_backend_factory.h" 51 #include "chrome/browser/history/shortcuts_backend_factory.h"
52 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" 52 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h"
53 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 53 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
54 #if !defined(OS_ANDROID)
55 #include "chrome/browser/notifications/sync_notifier/chrome_notifier_service_fac tory.h"
56 #endif
54 #include "chrome/browser/password_manager/password_store_factory.h" 57 #include "chrome/browser/password_manager/password_store_factory.h"
55 #include "chrome/browser/plugins/plugin_prefs_factory.h" 58 #include "chrome/browser/plugins/plugin_prefs_factory.h"
56 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" 59 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
57 #include "chrome/browser/predictors/predictor_database_factory.h" 60 #include "chrome/browser/predictors/predictor_database_factory.h"
58 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h" 61 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h"
59 #include "chrome/browser/prerender/prerender_link_manager_factory.h" 62 #include "chrome/browser/prerender/prerender_link_manager_factory.h"
60 #include "chrome/browser/prerender/prerender_manager_factory.h" 63 #include "chrome/browser/prerender/prerender_manager_factory.h"
61 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h" 64 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h"
62 #include "chrome/browser/profiles/gaia_info_update_service_factory.h" 65 #include "chrome/browser/profiles/gaia_info_update_service_factory.h"
63 #include "chrome/browser/profiles/profile.h" 66 #include "chrome/browser/profiles/profile.h"
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 FileBrowserPrivateAPIFactory::GetInstance(); 304 FileBrowserPrivateAPIFactory::GetInstance();
302 #endif 305 #endif
303 FindBarStateFactory::GetInstance(); 306 FindBarStateFactory::GetInstance();
304 GAIAInfoUpdateServiceFactory::GetInstance(); 307 GAIAInfoUpdateServiceFactory::GetInstance();
305 #if defined(USE_AURA) 308 #if defined(USE_AURA)
306 GesturePrefsObserverFactoryAura::GetInstance(); 309 GesturePrefsObserverFactoryAura::GetInstance();
307 #endif 310 #endif
308 GlobalErrorServiceFactory::GetInstance(); 311 GlobalErrorServiceFactory::GetInstance();
309 GoogleURLTrackerFactory::GetInstance(); 312 GoogleURLTrackerFactory::GetInstance();
310 HistoryServiceFactory::GetInstance(); 313 HistoryServiceFactory::GetInstance();
314 #if !defined(OS_ANDROID)
315 notifier::ChromeNotifierServiceFactory::GetInstance();
316 #endif
311 MediaGalleriesPreferencesFactory::GetInstance(); 317 MediaGalleriesPreferencesFactory::GetInstance();
312 NTPResourceCacheFactory::GetInstance(); 318 NTPResourceCacheFactory::GetInstance();
313 PasswordStoreFactory::GetInstance(); 319 PasswordStoreFactory::GetInstance();
314 PersonalDataManagerFactory::GetInstance(); 320 PersonalDataManagerFactory::GetInstance();
315 #if !defined(OS_ANDROID) 321 #if !defined(OS_ANDROID)
316 PinnedTabServiceFactory::GetInstance(); 322 PinnedTabServiceFactory::GetInstance();
317 #endif 323 #endif
318 #if defined(ENABLE_PLUGINS) 324 #if defined(ENABLE_PLUGINS)
319 PluginPrefsFactory::GetInstance(); 325 PluginPrefsFactory::GetInstance();
320 #endif 326 #endif
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 } 461 }
456 462
457 result.append("\n /* Toplevel profile */\n"); 463 result.append("\n /* Toplevel profile */\n");
458 result.append(" Profile [shape=box];\n"); 464 result.append(" Profile [shape=box];\n");
459 465
460 result.append("}\n"); 466 result.append("}\n");
461 return result; 467 return result;
462 } 468 }
463 469
464 #endif 470 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698