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

Unified Diff: chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc

Issue 2827523003: Move BrowsingDataRemover to content/ (Closed)
Patch Set: Rebase over codereview.chromium.org/2815913005 Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/profile_resetter/profile_resetter.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc
diff --git a/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc b/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc
index fa17e77ca7f812e1270b0e932f0cbd98b24fb222..c9ddbbb93c7612df8b94a36a27e90ff7bdbee257 100644
--- a/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc
+++ b/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc
@@ -13,7 +13,7 @@
#include "chrome/browser/autofill/personal_data_manager_factory.h"
#include "chrome/browser/background/background_contents_service_factory.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
-#include "chrome/browser/browsing_data/browsing_data_remover_factory.h"
+#include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate_factory.h"
#include "chrome/browser/chrome_browser_main.h"
#include "chrome/browser/content_settings/cookie_settings_factory.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
@@ -195,7 +195,6 @@ EnsureBrowserContextKeyedServiceFactoriesBuilt() {
#endif
BookmarkModelFactory::GetInstance();
BookmarkUndoServiceFactory::GetInstance();
- BrowsingDataRemoverFactory::GetInstance();
#if BUILDFLAG(ENABLE_CAPTIVE_PORTAL_DETECTION)
CaptivePortalServiceFactory::GetInstance();
#endif
@@ -203,14 +202,14 @@ EnsureBrowserContextKeyedServiceFactoriesBuilt() {
#if defined(OS_ANDROID)
chrome::android::DataUseUITabModelFactory::GetInstance();
#endif
- UINetworkQualityEstimatorServiceFactory::GetInstance();
+ ChromeBrowsingDataRemoverDelegateFactory::GetInstance();
+#if !defined(OS_ANDROID)
+ ChromeCryptAuthServiceFactory::GetInstance();
+#endif
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
CloudPrintProxyServiceFactory::GetInstance();
#endif
CookieSettingsFactory::GetInstance();
-#if !defined(OS_ANDROID)
- ChromeCryptAuthServiceFactory::GetInstance();
-#endif
#if BUILDFLAG(ENABLE_EXTENSIONS)
ExtensionWelcomeNotificationFactory::GetInstance();
#endif
@@ -335,6 +334,7 @@ EnsureBrowserContextKeyedServiceFactoriesBuilt() {
#if defined(OS_WIN)
TriggeredProfileResetterFactory::GetInstance();
#endif
+ UINetworkQualityEstimatorServiceFactory::GetInstance();
#if !defined(OS_ANDROID)
UsbChooserContextFactory::GetInstance();
#endif
« no previous file with comments | « chrome/browser/profile_resetter/profile_resetter.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698