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

Unified Diff: ppapi/native_client/tests/ppapi_geturl/module.cc

Issue 8826011: Remove PP_Module from parameters for PPB_Var.VarFromUtf8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build and some nacl tests. Created 9 years 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/native_client/tests/ppapi_geturl/module.cc
diff --git a/ppapi/native_client/tests/ppapi_geturl/module.cc b/ppapi/native_client/tests/ppapi_geturl/module.cc
index 766c4b5181c98c6c0559440ac670f2c3047f0487..a610f08121d1763d273d8dc2f9b138bb7c5f9dd5 100644
--- a/ppapi/native_client/tests/ppapi_geturl/module.cc
+++ b/ppapi/native_client/tests/ppapi_geturl/module.cc
@@ -221,7 +221,7 @@ PP_Var Module::StrToVar(const char* str) {
return PP_MakeUndefined();
const PPB_Var* ppb_var = module->ppb_var_interface();
if (NULL != ppb_var)
- return ppb_var->VarFromUtf8(module->module_id(), str, strlen(str));
+ return ppb_var->VarFromUtf8(str, strlen(str));
return PP_MakeUndefined();
}

Powered by Google App Engine
This is Rietveld 408576698