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

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

Issue 2827523003: Move BrowsingDataRemover to content/ (Closed)
Patch Set: Addressed some comments. 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
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 539c6d2ab1f927e28e9ae85b52c046fac83e8769..a56ff847d2cc4828cb27c4105f863f25067ee060 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"
@@ -199,7 +199,6 @@ EnsureBrowserContextKeyedServiceFactoriesBuilt() {
#endif
BookmarkModelFactory::GetInstance();
BookmarkUndoServiceFactory::GetInstance();
- BrowsingDataRemoverFactory::GetInstance();
#if BUILDFLAG(ENABLE_CAPTIVE_PORTAL_DETECTION)
CaptivePortalServiceFactory::GetInstance();
#endif
@@ -207,14 +206,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
@@ -340,6 +339,7 @@ EnsureBrowserContextKeyedServiceFactoriesBuilt() {
#if defined(OS_WIN)
TriggeredProfileResetterFactory::GetInstance();
#endif
+ UINetworkQualityEstimatorServiceFactory::GetInstance();
#if !defined(OS_ANDROID)
UsbChooserContextFactory::GetInstance();
#endif

Powered by Google App Engine
This is Rietveld 408576698