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

Unified Diff: chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.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/extensions/api/declarative_webrequest/webrequest_action_unittest.cc
diff --git a/chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc b/chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc
index 348d2c8462d206eb0408481f0d96f7d8bf5b8e18..d283239d9396d8be94ece82140f85d33ecd8d614 100644
--- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc
+++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc
@@ -54,7 +54,7 @@ std::unique_ptr<WebRequestActionSet> CreateSetOfActions(const char* json) {
it != parsed_list->end();
++it) {
const base::DictionaryValue* dict;
- CHECK((*it)->GetAsDictionary(&dict));
+ CHECK(it->GetAsDictionary(&dict));
actions.push_back(dict->CreateDeepCopy());
}

Powered by Google App Engine
This is Rietveld 408576698