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

Unified Diff: chrome/browser/protector/protected_prefs_watcher.cc

Issue 10824344: Renamed ExtensionIdSet to ExtensionIds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: undid files where I went too far Created 8 years, 4 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 | « chrome/browser/protector/protected_prefs_watcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/protector/protected_prefs_watcher.cc
diff --git a/chrome/browser/protector/protected_prefs_watcher.cc b/chrome/browser/protector/protected_prefs_watcher.cc
index 7c032cee428a3b419b5ed5763c1ea5fa089083d4..46ac3a320e3a386447a5cc1fb196049145bdef9e 100644
--- a/chrome/browser/protector/protected_prefs_watcher.cc
+++ b/chrome/browser/protector/protected_prefs_watcher.cc
@@ -209,7 +209,7 @@ bool ProtectedPrefsWatcher::UpdateCachedPrefs() {
!extension_prefs_value->GetAsDictionary(&extension_prefs)) {
return false;
}
- ExtensionPrefs::ExtensionIdSet extension_ids =
+ ExtensionPrefs::ExtensionIds extension_ids =
ExtensionPrefs::GetExtensionsFrom(extension_prefs);
if (extension_ids == cached_extension_ids_)
return false;
@@ -236,7 +236,7 @@ void ProtectedPrefsWatcher::InitBackup() {
ListPrefUpdate extension_ids_update(prefs, kBackupExtensionsIDs);
base::ListValue* extension_ids = extension_ids_update.Get();
extension_ids->Clear();
- for (ExtensionPrefs::ExtensionIdSet::const_iterator it =
+ for (ExtensionPrefs::ExtensionIds::const_iterator it =
cached_extension_ids_.begin();
it != cached_extension_ids_.end(); ++it) {
extension_ids->Append(base::Value::CreateStringValue(*it));
@@ -297,7 +297,7 @@ bool ProtectedPrefsWatcher::UpdateBackupEntry(const std::string& path) {
ListPrefUpdate extension_ids_update(prefs, kBackupExtensionsIDs);
base::ListValue* extension_ids = extension_ids_update.Get();
extension_ids->Clear();
- for (ExtensionPrefs::ExtensionIdSet::const_iterator it =
+ for (ExtensionPrefs::ExtensionIds::const_iterator it =
cached_extension_ids_.begin();
it != cached_extension_ids_.end(); ++it) {
extension_ids->Append(base::Value::CreateStringValue(*it));
« no previous file with comments | « chrome/browser/protector/protected_prefs_watcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698