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

Unified Diff: chrome/browser/browsing_data/passwords_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/passwords_counter.cc
diff --git a/chrome/browser/browsing_data/passwords_counter.cc b/chrome/browser/browsing_data/passwords_counter.cc
index e235fa41c4ff298018c354b2cbb533864266905d..b8891ef4b937b2886de21142ef01c6e11d1c2d5b 100644
--- a/chrome/browser/browsing_data/passwords_counter.cc
+++ b/chrome/browser/browsing_data/passwords_counter.cc
@@ -5,11 +5,12 @@
#include "chrome/browser/browsing_data/passwords_counter.h"
#include "chrome/browser/password_manager/password_store_factory.h"
#include "chrome/browser/profiles/profile.h"
-#include "chrome/common/pref_names.h"
+#include "components/browsing_data/pref_names.h"
#include "components/password_manager/core/browser/password_store.h"
PasswordsCounter::PasswordsCounter(Profile* profile)
- : BrowsingDataCounter(prefs::kDeletePasswords), profile_(profile) {}
+ : BrowsingDataCounter(browsing_data::prefs::kDeletePasswords),
+ profile_(profile) {}
PasswordsCounter::~PasswordsCounter() {
store_->RemoveObserver(this);

Powered by Google App Engine
This is Rietveld 408576698