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

Unified Diff: content/renderer/vr/vr_dispatcher.cc

Issue 1309803006: [VR, Permission] Use appopriate type parameters for WebCallbacks (2/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | « content/child/permissions/permission_dispatcher.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/vr/vr_dispatcher.cc
diff --git a/content/renderer/vr/vr_dispatcher.cc b/content/renderer/vr/vr_dispatcher.cc
index 43e25722f9efba164e9c7f5c489b431916f5bd1c..a797713fea832d9e87c6518322ce689bc45700be 100644
--- a/content/renderer/vr/vr_dispatcher.cc
+++ b/content/renderer/vr/vr_dispatcher.cc
@@ -57,7 +57,7 @@ void VRDispatcher::OnGetDevices(int request_id,
web_devices[i] = devices[i].To<blink::WebVRDevice>();
}
- callback->onSuccess(&web_devices);
+ callback->onSuccess(web_devices);
pending_requests_.Remove(request_id);
}
« no previous file with comments | « content/child/permissions/permission_dispatcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698