| Index: ppapi/proxy/host_var_serialization_rules.cc | 
| =================================================================== | 
| --- ppapi/proxy/host_var_serialization_rules.cc	(revision 72840) | 
| +++ ppapi/proxy/host_var_serialization_rules.cc	(working copy) | 
| @@ -62,7 +62,7 @@ | 
| } | 
|  | 
| PP_Var HostVarSerializationRules::BeginSendPassRef(const PP_Var& var, | 
| -                                                 std::string* str_val) { | 
| +                                                   std::string* str_val) { | 
| // See PluginVarSerialization::ReceivePassRef for an example. We don't need | 
| // to do anything here other than convert the string. | 
| if (var.type == PP_VARTYPE_STRING) | 
| @@ -70,7 +70,8 @@ | 
| return var; | 
| } | 
|  | 
| -void HostVarSerializationRules::EndSendPassRef(const PP_Var& var) { | 
| +void HostVarSerializationRules::EndSendPassRef(const PP_Var& /* var */, | 
| +                                               Dispatcher* /* dispatcher */) { | 
| // See PluginVarSerialization::ReceivePassRef for an example. We don't need | 
| // to do anything here. | 
| } | 
|  |