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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_font.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/src/shared/ppapi_proxy/plugin_ppb_font.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_font.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_font.cc
index d0a18e5656df9cb7b34b4fc34ad6612ffa2b4b66..57742b83826fc12a74cce7a263786e38aa755481 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_font.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_font.cc
@@ -53,8 +53,7 @@ PP_Var GetFontFamilies(PP_Instance instance) {
NaClSrpcErrorString(srpc_result));
if (srpc_result == NACL_SRPC_RESULT_OK)
- (void) DeserializeTo(
- channel, var_bytes.get(), var_size, 1, &font_families);
+ (void) DeserializeTo(var_bytes.get(), var_size, 1, &font_families);
return font_families;
}
@@ -130,8 +129,7 @@ PP_Bool Describe(PP_Resource font,
description->face = PP_MakeUndefined();
if (srpc_result == NACL_SRPC_RESULT_OK && success) {
- (void) DeserializeTo(
- channel, face_bytes.get(), face_size, 1, &description->face);
+ (void) DeserializeTo(face_bytes.get(), face_size, 1, &description->face);
return PP_TRUE;
}
return PP_FALSE;

Powered by Google App Engine
This is Rietveld 408576698