Chromium Code Reviews| Index: ppapi/proxy/host_dispatcher.cc |
| =================================================================== |
| --- ppapi/proxy/host_dispatcher.cc (revision 91773) |
| +++ ppapi/proxy/host_dispatcher.cc (working copy) |
| @@ -40,7 +40,7 @@ |
| bool usable = true; |
| if (!found->second->Send(new PpapiMsg_ReserveInstanceId(instance, &usable))) |
| return PP_TRUE; |
| - return BoolToPPBool(usable); |
| + return PP_FromBool(usable); |
| } |
| // Saves the state of the given bool and puts it back when it goes out of |