diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 21:43:01 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 21:43:01 +0000 |
commit | 5a3f62856d89817d4117de189e855a6dad16c2ee (patch) | |
tree | a7df5acea5b54ea8ca795b0ba5a1dc90316d450e /ppapi/proxy/ppb_url_response_info_proxy.h | |
parent | 7631cf8806adf505db4fed53210e27d2d1dd2cd0 (diff) | |
download | chromium_src-5a3f62856d89817d4117de189e855a6dad16c2ee.zip chromium_src-5a3f62856d89817d4117de189e855a6dad16c2ee.tar.gz chromium_src-5a3f62856d89817d4117de189e855a6dad16c2ee.tar.bz2 |
Move URLLoader, URLRequestInfo, and URLResponseInfo out of the dev directory
and rename accordingly.
Rename URLResponseInfo.GetBody to GetBodyAsFileRef.
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/4747001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65705 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_url_response_info_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_url_response_info_proxy.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ppapi/proxy/ppb_url_response_info_proxy.h b/ppapi/proxy/ppb_url_response_info_proxy.h index 639ddbe..423ca3e 100644 --- a/ppapi/proxy/ppb_url_response_info_proxy.h +++ b/ppapi/proxy/ppb_url_response_info_proxy.h @@ -10,7 +10,7 @@ #include "ppapi/c/pp_resource.h" #include "ppapi/proxy/interface_proxy.h" -struct PPB_URLResponseInfo_Dev; +struct PPB_URLResponseInfo; namespace pp { namespace proxy { @@ -28,8 +28,8 @@ class PPB_URLResponseInfo_Proxy : public InterfaceProxy { // a response info object in the plugin. static void TrackPluginResource(PP_Resource response_resource); - const PPB_URLResponseInfo_Dev* ppb_url_response_info_target() const { - return static_cast<const PPB_URLResponseInfo_Dev*>(target_interface()); + const PPB_URLResponseInfo* ppb_url_response_info_target() const { + return static_cast<const PPB_URLResponseInfo*>(target_interface()); } // InterfaceProxy implementation. @@ -42,7 +42,8 @@ class PPB_URLResponseInfo_Proxy : public InterfaceProxy { void OnMsgGetProperty(PP_Resource response, int32_t property, SerializedVarReturnValue result); - void OnMsgGetBody(PP_Resource response, PP_Resource* file_ref_result); + void OnMsgGetBodyAsFileRef(PP_Resource response, + PP_Resource* file_ref_result); DISALLOW_COPY_AND_ASSIGN(PPB_URLResponseInfo_Proxy); }; |