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

Unified Diff: services/preferences/public/cpp/persistent_pref_store_client.cc

Issue 2905903002: Delete the PreferenceMACs on profile deletion. (Closed)
Patch Set: Created 3 years, 7 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: services/preferences/public/cpp/persistent_pref_store_client.cc
diff --git a/services/preferences/public/cpp/persistent_pref_store_client.cc b/services/preferences/public/cpp/persistent_pref_store_client.cc
index baf9aa1ab3fdbc901f3dca1735325df5c4084627..848042645a0565fd82455f2f4277990294aae0ca 100644
--- a/services/preferences/public/cpp/persistent_pref_store_client.cc
+++ b/services/preferences/public/cpp/persistent_pref_store_client.cc
@@ -179,6 +179,11 @@ void PersistentPrefStoreClient::ClearMutableValues() {
return pref_store_->ClearMutableValues();
}
+void PersistentPrefStoreClient::CleanupForProfileDeletion() {
+ DCHECK(pref_store_);
+ return pref_store_->CleanupForProfileDeletion();
+}
+
PersistentPrefStoreClient::~PersistentPrefStoreClient() {
if (!pref_store_)
return;

Powered by Google App Engine
This is Rietveld 408576698