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

Unified Diff: src/shared/ppapi_proxy/plugin_var.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/plugin_ppp_impl.cc ('k') | src/trusted/service_runtime/env_cleanser.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/ppapi_proxy/plugin_var.cc
===================================================================
--- src/shared/ppapi_proxy/plugin_var.cc (revision 3312)
+++ src/shared/ppapi_proxy/plugin_var.cc (working copy)
@@ -117,7 +117,8 @@
}
}
-PP_Var VarFromUtf8(const char* data, uint32_t len) {
+PP_Var VarFromUtf8(PP_Module module_id, const char* data, uint32_t len) {
+ UNREFERENCED_PARAMETER(module_id);
StrImpl* impl = new StrImpl(data, len);
PP_Var result;
result.type = PP_VARTYPE_STRING;
@@ -300,7 +301,10 @@
return GetObjectId(VarToObjImpl(var));
}
-PP_Var CreateObject(const PPP_Class* object_class, void* object_data) {
+PP_Var CreateObject(PP_Module module_id,
+ const PPP_Class* object_class,
+ void* object_data) {
+ UNREFERENCED_PARAMETER(module_id);
PP_Var result;
result.type = PP_VARTYPE_OBJECT;
result.value.as_id =
« no previous file with comments | « src/shared/ppapi_proxy/plugin_ppp_impl.cc ('k') | src/trusted/service_runtime/env_cleanser.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698