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

Unified Diff: extensions/renderer/api_request_handler.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_event_handler.cc ('k') | extensions/renderer/api_signature.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/api_request_handler.cc
diff --git a/extensions/renderer/api_request_handler.cc b/extensions/renderer/api_request_handler.cc
index 369cfcb1495bafd50dfb8f4d3e697e1e5a409205..1771dce16fe5407d6e2abd788d06b4b8f37501be 100644
--- a/extensions/renderer/api_request_handler.cc
+++ b/extensions/renderer/api_request_handler.cc
@@ -127,7 +127,7 @@
for (const auto& arg : pending_request.callback_arguments)
args.push_back(arg.Get(isolate));
for (const auto& arg : response_args)
- args.push_back(converter->ToV8Value(&arg, context));
+ args.push_back(converter->ToV8Value(arg.get(), context));
blink::WebScopedUserGesture user_gesture(pending_request.user_gesture_token);
if (!error.empty())
« no previous file with comments | « extensions/renderer/api_event_handler.cc ('k') | extensions/renderer/api_signature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698