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

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

Issue 11620012: [Profiles, Fixit] Making GAIAInfoUpdateService into a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing permissions Created 7 years, 11 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
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/media_gallery/media_galleries_preferences_factory.h" 44 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h"
45 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 45 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
46 #include "chrome/browser/password_manager/password_store_factory.h" 46 #include "chrome/browser/password_manager/password_store_factory.h"
47 #include "chrome/browser/plugins/plugin_prefs_factory.h" 47 #include "chrome/browser/plugins/plugin_prefs_factory.h"
48 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" 48 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
49 #include "chrome/browser/predictors/predictor_database_factory.h" 49 #include "chrome/browser/predictors/predictor_database_factory.h"
50 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h" 50 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h"
51 #include "chrome/browser/prerender/prerender_link_manager_factory.h" 51 #include "chrome/browser/prerender/prerender_link_manager_factory.h"
52 #include "chrome/browser/prerender/prerender_manager_factory.h" 52 #include "chrome/browser/prerender/prerender_manager_factory.h"
53 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h" 53 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h"
54 #include "chrome/browser/profiles/gaia_info_update_service_factory.h"
54 #include "chrome/browser/profiles/profile.h" 55 #include "chrome/browser/profiles/profile.h"
55 #include "chrome/browser/profiles/profile_keyed_service.h" 56 #include "chrome/browser/profiles/profile_keyed_service.h"
56 #include "chrome/browser/profiles/profile_keyed_service_factory.h" 57 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
57 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" 58 #include "chrome/browser/search_engines/template_url_fetcher_factory.h"
58 #include "chrome/browser/search_engines/template_url_service_factory.h" 59 #include "chrome/browser/search_engines/template_url_service_factory.h"
59 #include "chrome/browser/sessions/session_service_factory.h" 60 #include "chrome/browser/sessions/session_service_factory.h"
60 #include "chrome/browser/sessions/tab_restore_service_factory.h" 61 #include "chrome/browser/sessions/tab_restore_service_factory.h"
61 #include "chrome/browser/signin/about_signin_internals_factory.h" 62 #include "chrome/browser/signin/about_signin_internals_factory.h"
62 #include "chrome/browser/signin/signin_manager_factory.h" 63 #include "chrome/browser/signin/signin_manager_factory.h"
63 #include "chrome/browser/signin/token_service_factory.h" 64 #include "chrome/browser/signin/token_service_factory.h"
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 extensions::SuggestedLinksRegistryFactory::GetInstance(); 268 extensions::SuggestedLinksRegistryFactory::GetInstance();
268 extensions::TabCaptureRegistryFactory::GetInstance(); 269 extensions::TabCaptureRegistryFactory::GetInstance();
269 extensions::WebNavigationAPIFactory::GetInstance(); 270 extensions::WebNavigationAPIFactory::GetInstance();
270 ExtensionManagementAPIFactory::GetInstance(); 271 ExtensionManagementAPIFactory::GetInstance();
271 #endif 272 #endif
272 FaviconServiceFactory::GetInstance(); 273 FaviconServiceFactory::GetInstance();
273 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION) 274 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION)
274 FileBrowserPrivateAPIFactory::GetInstance(); 275 FileBrowserPrivateAPIFactory::GetInstance();
275 #endif 276 #endif
276 FindBarStateFactory::GetInstance(); 277 FindBarStateFactory::GetInstance();
278 GAIAInfoUpdateServiceFactory::GetInstance();
277 #if defined(USE_AURA) 279 #if defined(USE_AURA)
278 GesturePrefsObserverFactoryAura::GetInstance(); 280 GesturePrefsObserverFactoryAura::GetInstance();
279 #endif 281 #endif
280 GlobalErrorServiceFactory::GetInstance(); 282 GlobalErrorServiceFactory::GetInstance();
281 GoogleURLTrackerFactory::GetInstance(); 283 GoogleURLTrackerFactory::GetInstance();
282 HistoryServiceFactory::GetInstance(); 284 HistoryServiceFactory::GetInstance();
283 MediaGalleriesPreferencesFactory::GetInstance(); 285 MediaGalleriesPreferencesFactory::GetInstance();
284 NTPResourceCacheFactory::GetInstance(); 286 NTPResourceCacheFactory::GetInstance();
285 PasswordStoreFactory::GetInstance(); 287 PasswordStoreFactory::GetInstance();
286 PersonalDataManagerFactory::GetInstance(); 288 PersonalDataManagerFactory::GetInstance();
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698