| Index: ppapi/proxy/ppb_url_response_info_proxy.cc
|
| ===================================================================
|
| --- ppapi/proxy/ppb_url_response_info_proxy.cc (revision 65343)
|
| +++ ppapi/proxy/ppb_url_response_info_proxy.cc (working copy)
|
| @@ -27,9 +27,9 @@
|
|
|
| namespace {
|
|
|
| -bool IsURLResponseInfo(PP_Resource resource) {
|
| +PP_Bool IsURLResponseInfo(PP_Resource resource) {
|
| URLResponseInfo* object = PluginResource::GetAs<URLResponseInfo>(resource);
|
| - return !!object;
|
| + return BoolToPPBool(!!object);
|
| }
|
|
|
| PP_Var GetProperty(PP_Resource response, PP_URLResponseProperty_Dev property) {
|
|
|