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

Unified Diff: extensions/renderer/dispatcher.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/argument_spec.cc ('k') | google_apis/gaia/gaia_auth_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/dispatcher.cc
diff --git a/extensions/renderer/dispatcher.cc b/extensions/renderer/dispatcher.cc
index 28e2b0b49888ee61e53166db084de7eaba59168a..fcc528de8b1d55a51fbc5db5d9ca3af47a5c7aba 100644
--- a/extensions/renderer/dispatcher.cc
+++ b/extensions/renderer/dispatcher.cc
@@ -154,7 +154,7 @@
std::vector<v8::Local<v8::Value>> arguments;
for (const auto& arg : *args) {
- arguments.push_back(converter->ToV8Value(&arg, context->v8_context()));
+ arguments.push_back(converter->ToV8Value(arg.get(), context->v8_context()));
}
context->module_system()->CallModuleMethodSafe(
« no previous file with comments | « extensions/renderer/argument_spec.cc ('k') | google_apis/gaia/gaia_auth_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698