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

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

Issue 12049052: Move core url data manager classes to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" 71 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h"
72 #include "chrome/browser/speech/extension_api/tts_extension_api.h" 72 #include "chrome/browser/speech/extension_api/tts_extension_api.h"
73 #include "chrome/browser/speech/speech_input_extension_manager.h" 73 #include "chrome/browser/speech/speech_input_extension_manager.h"
74 #include "chrome/browser/spellchecker/spellcheck_factory.h" 74 #include "chrome/browser/spellchecker/spellcheck_factory.h"
75 #include "chrome/browser/sync/profile_sync_service_factory.h" 75 #include "chrome/browser/sync/profile_sync_service_factory.h"
76 #include "chrome/browser/themes/theme_service_factory.h" 76 #include "chrome/browser/themes/theme_service_factory.h"
77 #include "chrome/browser/thumbnails/thumbnail_service_factory.h" 77 #include "chrome/browser/thumbnails/thumbnail_service_factory.h"
78 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" 78 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h"
79 #include "chrome/browser/ui/global_error/global_error_service_factory.h" 79 #include "chrome/browser/ui/global_error/global_error_service_factory.h"
80 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" 80 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h"
81 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h"
82 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" 81 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h"
83 #include "chrome/browser/user_style_sheet_watcher_factory.h" 82 #include "chrome/browser/user_style_sheet_watcher_factory.h"
84 #include "chrome/browser/webdata/web_data_service_factory.h" 83 #include "chrome/browser/webdata/web_data_service_factory.h"
85 84
86 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) 85 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION)
87 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" 86 #include "chrome/browser/captive_portal/captive_portal_service_factory.h"
88 #endif 87 #endif
89 88
90 #if defined(ENABLE_CONFIGURATION_POLICY) 89 #if defined(ENABLE_CONFIGURATION_POLICY)
91 #include "chrome/browser/policy/user_policy_signin_service_factory.h" 90 #include "chrome/browser/policy/user_policy_signin_service_factory.h"
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 AboutSigninInternalsFactory::GetInstance(); 234 AboutSigninInternalsFactory::GetInstance();
236 235
237 #if defined(ENABLE_BACKGROUND) 236 #if defined(ENABLE_BACKGROUND)
238 BackgroundContentsServiceFactory::GetInstance(); 237 BackgroundContentsServiceFactory::GetInstance();
239 #endif 238 #endif
240 BookmarkModelFactory::GetInstance(); 239 BookmarkModelFactory::GetInstance();
241 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) 240 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION)
242 captive_portal::CaptivePortalServiceFactory::GetInstance(); 241 captive_portal::CaptivePortalServiceFactory::GetInstance();
243 #endif 242 #endif
244 ChromeGeolocationPermissionContextFactory::GetInstance(); 243 ChromeGeolocationPermissionContextFactory::GetInstance();
245 ChromeURLDataManagerFactory::GetInstance();
246 #if defined(ENABLE_PRINTING) 244 #if defined(ENABLE_PRINTING)
247 CloudPrintProxyServiceFactory::GetInstance(); 245 CloudPrintProxyServiceFactory::GetInstance();
248 #endif 246 #endif
249 CookieSettings::Factory::GetInstance(); 247 CookieSettings::Factory::GetInstance();
250 #if defined(ENABLE_NOTIFICATIONS) 248 #if defined(ENABLE_NOTIFICATIONS)
251 DesktopNotificationServiceFactory::GetInstance(); 249 DesktopNotificationServiceFactory::GetInstance();
252 #endif 250 #endif
253 DownloadServiceFactory::GetInstance(); 251 DownloadServiceFactory::GetInstance();
254 #if defined(ENABLE_EXTENSIONS) 252 #if defined(ENABLE_EXTENSIONS)
255 apps::AppRestoreServiceFactory::GetInstance(); 253 apps::AppRestoreServiceFactory::GetInstance();
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 } 451 }
454 452
455 result.append("\n /* Toplevel profile */\n"); 453 result.append("\n /* Toplevel profile */\n");
456 result.append(" Profile [shape=box];\n"); 454 result.append(" Profile [shape=box];\n");
457 455
458 result.append("}\n"); 456 result.append("}\n");
459 return result; 457 return result;
460 } 458 }
461 459
462 #endif 460 #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