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

Unified Diff: ppapi/proxy/ppb_instance_proxy.cc

Issue 9728001: Make the file chooser use PP_ArrayOutput (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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: ppapi/proxy/ppb_instance_proxy.cc
diff --git a/ppapi/proxy/ppb_instance_proxy.cc b/ppapi/proxy/ppb_instance_proxy.cc
index 7f29c6619346e643cb80375597e791214f3974e0..758e67f3dc1edeea5c82fbd5153c9b903ec2ad0b 100644
--- a/ppapi/proxy/ppb_instance_proxy.cc
+++ b/ppapi/proxy/ppb_instance_proxy.cc
@@ -573,8 +573,10 @@ void PPB_Instance_Proxy::OnHostMsgPostMessage(
void PPB_Instance_Proxy::OnHostMsgLockMouse(PP_Instance instance) {
EnterHostFunctionForceCallback<PPB_Instance_FunctionAPI> enter(
- instance, callback_factory_,
- &PPB_Instance_Proxy::MouseLockCompleteInHost, instance);
+ instance,
+ callback_factory_.NewCallback(
+ &PPB_Instance_Proxy::MouseLockCompleteInHost,
+ instance));
if (enter.succeeded())
enter.SetResult(enter.functions()->LockMouse(instance, enter.callback()));
}

Powered by Google App Engine
This is Rietveld 408576698