Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: ppapi/cpp/url_request_info.cc

Issue 6711047: Fix up some types in the API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: static_cast and header order Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/cpp/url_request_info.h ('k') | ppapi/lib/gl/egl/egldriver.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/url_request_info.cc
diff --git a/ppapi/cpp/url_request_info.cc b/ppapi/cpp/url_request_info.cc
index 76cf8329178c056fc1b2a0ffa6a798f7e60c45c5..1303d71e720c7d7329f27674441410073204c3f2 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(
« no previous file with comments | « ppapi/cpp/url_request_info.h ('k') | ppapi/lib/gl/egl/egldriver.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698