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

Unified Diff: chrome/browser/media_galleries/media_galleries_preferences_unittest.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Rebase Created 3 years, 8 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/media_galleries/media_galleries_preferences_unittest.cc
diff --git a/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc b/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc
index 7e966caf0e063539fddd730e850c88f822b39472..f292e1c12a2af7fa0d015459d65f071d8a03b462 100644
--- a/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc
+++ b/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc
@@ -191,7 +191,7 @@ class MediaGalleriesPreferencesTest : public testing::Test {
++iter) {
base::DictionaryValue* dict;
- if ((*iter)->GetAsDictionary(&dict)) {
+ if (iter->GetAsDictionary(&dict)) {
// Setting the prefs version to 2 which is the version before
// default_gallery_type was added.
dict->SetInteger(kMediaGalleriesPrefsVersionKey, 2);
« no previous file with comments | « chrome/browser/media_galleries/media_galleries_preferences.cc ('k') | chrome/browser/metrics/plugin_metrics_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698