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

Unified Diff: chrome/browser/spellchecker/spellcheck_service_browsertest.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Comment Updates 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
Index: chrome/browser/spellchecker/spellcheck_service_browsertest.cc
diff --git a/chrome/browser/spellchecker/spellcheck_service_browsertest.cc b/chrome/browser/spellchecker/spellcheck_service_browsertest.cc
index 13deefa92cf75258fb5c63653c6f5f87228c98dc..3affcf216a99041d4851c7111c1d8033c3434253 100644
--- a/chrome/browser/spellchecker/spellcheck_service_browsertest.cc
+++ b/chrome/browser/spellchecker/spellcheck_service_browsertest.cc
@@ -132,7 +132,7 @@ class SpellcheckServiceBrowserTest : public InProcessBrowserTest {
std::vector<std::string> dictionaries;
for (const auto& item_value : *list_value) {
std::string dictionary;
- EXPECT_TRUE(item_value->GetAsString(&dictionary));
+ EXPECT_TRUE(item_value.GetAsString(&dictionary));
dictionaries.push_back(dictionary);
}
return base::JoinString(dictionaries, ",");

Powered by Google App Engine
This is Rietveld 408576698