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

Unified Diff: chrome/browser/browsing_data/downloads_counter.cc

Issue 2136373003: Move browsing data deletion prefs to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comment Created 4 years, 5 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/browsing_data/downloads_counter.cc
diff --git a/chrome/browser/browsing_data/downloads_counter.cc b/chrome/browser/browsing_data/downloads_counter.cc
index f0e78e2e3dbc57af7b7351e43dbbad823cfab83a..dd205ad8f5b10626bc62f90fa0368ba9530e88d9 100644
--- a/chrome/browser/browsing_data/downloads_counter.cc
+++ b/chrome/browser/browsing_data/downloads_counter.cc
@@ -6,11 +6,12 @@
#include "chrome/browser/download/download_history.h"
#include "chrome/browser/profiles/profile.h"
-#include "chrome/common/pref_names.h"
+#include "components/browsing_data/pref_names.h"
#include "content/public/browser/download_manager.h"
DownloadsCounter::DownloadsCounter(Profile* profile)
- : BrowsingDataCounter(prefs::kDeleteDownloadHistory), profile_(profile) {}
+ : BrowsingDataCounter(browsing_data::prefs::kDeleteDownloadHistory),
+ profile_(profile) {}
DownloadsCounter::~DownloadsCounter() {
}

Powered by Google App Engine
This is Rietveld 408576698