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

Unified Diff: chrome/browser/prefs/profile_pref_store_manager.cc

Issue 2751603002: Remove the alternative preferences filename from JsonPrefStore. (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | chrome/browser/prefs/tracked/pref_hash_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prefs/profile_pref_store_manager.cc
diff --git a/chrome/browser/prefs/profile_pref_store_manager.cc b/chrome/browser/prefs/profile_pref_store_manager.cc
index 96a551f25919768c83540b3730ae8f157ac90bcc..4310f9f16f366f67ec5af9f056b45d24c9b46735 100644
--- a/chrome/browser/prefs/profile_pref_store_manager.cc
+++ b/chrome/browser/prefs/profile_pref_store_manager.cc
@@ -148,11 +148,8 @@ PersistentPrefStore* ProfilePrefStoreManager::CreateProfilePrefStore(
scoped_refptr<JsonPrefStore> unprotected_pref_store(new JsonPrefStore(
profile_path_.Append(chrome::kPreferencesFilename), io_task_runner.get(),
std::move(unprotected_pref_hash_filter)));
- // TODO(gab): Remove kDeprecatedProtectedPreferencesFilename as an alternate
- // file in M40+.
scoped_refptr<JsonPrefStore> protected_pref_store(new JsonPrefStore(
profile_path_.Append(chrome::kSecurePreferencesFilename),
- profile_path_.Append(chrome::kProtectedPreferencesFilenameDeprecated),
io_task_runner.get(), std::move(protected_pref_hash_filter)));
SetupTrackedPreferencesMigration(
« no previous file with comments | « no previous file | chrome/browser/prefs/tracked/pref_hash_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698