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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_pdf.cc

Issue 8826011: Remove PP_Module from parameters for PPB_Var.VarFromUtf8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 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/src/shared/ppapi_proxy/plugin_ppb_pdf.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_pdf.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_pdf.cc
index 75bee3f93c76cc5aa93a910f3de6ece55ba957db..2b63e85bd701511ed4946d47bb4f79523eb039f7 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_pdf.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_pdf.cc
@@ -49,8 +49,7 @@ PP_Var GetLocalizedString(
PP_Var string = PP_MakeUndefined();
if (srpc_result == NACL_SRPC_RESULT_OK) {
- (void) DeserializeTo(
- channel, string_bytes.get(), string_size, 1, &string);
+ (void) DeserializeTo(string_bytes.get(), string_size, 1, &string);
}
DebugPrintf("PPB_PDF::GetLocalizedString: %s\n",

Powered by Google App Engine
This is Rietveld 408576698