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

Unified Diff: extensions/renderer/api_signature.cc

Issue 2816513002: Revert of Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: 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
« no previous file with comments | « extensions/renderer/api_request_handler.cc ('k') | extensions/renderer/argument_spec.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/api_signature.cc
diff --git a/extensions/renderer/api_signature.cc b/extensions/renderer/api_signature.cc
index c83eb9105f367c6b3b877b788ce12cd58a18d81a..683ba1ff388f634a44d08132569a43e5148562e6 100644
--- a/extensions/renderer/api_signature.cc
+++ b/extensions/renderer/api_signature.cc
@@ -234,7 +234,7 @@
signature_.reserve(specification.GetSize());
for (const auto& value : specification) {
const base::DictionaryValue* param = nullptr;
- CHECK(value.GetAsDictionary(&param));
+ CHECK(value->GetAsDictionary(&param));
signature_.push_back(base::MakeUnique<ArgumentSpec>(*param));
}
}
« no previous file with comments | « extensions/renderer/api_request_handler.cc ('k') | extensions/renderer/argument_spec.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698