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

Unified Diff: src/shared/ppapi_proxy/object_proxy.cc

Issue 3391010: Update the PPAPI DEPS revision. This change included parameter profile chang... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 10 years, 3 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 | « src/shared/ppapi_proxy/browser_ppp.cc ('k') | src/shared/ppapi_proxy/object_serialize.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/ppapi_proxy/object_proxy.cc
===================================================================
--- src/shared/ppapi_proxy/object_proxy.cc (revision 3312)
+++ src/shared/ppapi_proxy/object_proxy.cc (working copy)
@@ -369,7 +369,9 @@
}
Object* proxy = static_cast<Object*>(new ObjectProxy(capability, channel));
PP_Var* var = new PP_Var;
- *var = VarInterface()->CreateObject(&Object::object_class, proxy);
+ *var = VarInterface()->CreateObject(LookupModuleIdForSrpcChannel(channel),
+ &Object::object_class,
+ proxy);
(*capability_proxy_map)[capability] = var;
// TODO(sehr): increment the ref count of the object in var here.
return *var;
« no previous file with comments | « src/shared/ppapi_proxy/browser_ppp.cc ('k') | src/shared/ppapi_proxy/object_serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698