diff options
Diffstat (limited to 'ppapi/cpp/url_request_info.cc')
-rw-r--r-- | ppapi/cpp/url_request_info.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/cpp/url_request_info.cc b/ppapi/cpp/url_request_info.cc index 76cf832..1303d71 100644 --- a/ppapi/cpp/url_request_info.cc +++ b/ppapi/cpp/url_request_info.cc @@ -39,7 +39,7 @@ bool URLRequestInfo::SetProperty(PP_URLRequestProperty property, pp_resource(), property, value.pp_var())); } -bool URLRequestInfo::AppendDataToBody(const char* data, uint32_t len) { +bool URLRequestInfo::AppendDataToBody(const void* data, uint32_t len) { if (!has_interface<PPB_URLRequestInfo>()) return false; return PPBoolToBool(get_interface<PPB_URLRequestInfo>()->AppendDataToBody( |