| 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;
|
|
|