| Index: ppapi/proxy/ppb_url_request_info_proxy.h
|
| diff --git a/ppapi/proxy/ppb_url_request_info_proxy.h b/ppapi/proxy/ppb_url_request_info_proxy.h
|
| index e17ddb2df0b8c0d544f405a309ee8f629237ec18..6242bf857104e1b6e1cbd852cda43144a71e56b8 100644
|
| --- a/ppapi/proxy/ppb_url_request_info_proxy.h
|
| +++ b/ppapi/proxy/ppb_url_request_info_proxy.h
|
| @@ -7,16 +7,13 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "ppapi/c/pp_instance.h"
|
| -#include "ppapi/c/pp_resource.h"
|
| #include "ppapi/proxy/interface_proxy.h"
|
| -#include "ppapi/shared_impl/host_resource.h"
|
| -
|
| -struct PPB_URLRequestInfo;
|
|
|
| namespace ppapi {
|
| -namespace proxy {
|
|
|
| -class SerializedVarReceiveInput;
|
| +struct PPB_URLRequestInfo_Data;
|
| +
|
| +namespace proxy {
|
|
|
| class PPB_URLRequestInfo_Proxy : public InterfaceProxy {
|
| public:
|
| @@ -26,25 +23,10 @@ class PPB_URLRequestInfo_Proxy : public InterfaceProxy {
|
|
|
| static const Info* GetInfo();
|
|
|
| - static PP_Resource CreateProxyResource(PP_Instance instance);
|
| -
|
| // InterfaceProxy implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& msg);
|
|
|
| private:
|
| - // Message handlers.
|
| - void OnMsgCreate(PP_Instance instance, ppapi::HostResource* result);
|
| - void OnMsgSetProperty(ppapi::HostResource request,
|
| - int32_t property,
|
| - SerializedVarReceiveInput value);
|
| - void OnMsgAppendDataToBody(ppapi::HostResource request,
|
| - const std::string& data);
|
| - void OnMsgAppendFileToBody(ppapi::HostResource request,
|
| - ppapi::HostResource file_ref,
|
| - int64_t start_offset,
|
| - int64_t number_of_bytes,
|
| - double expected_last_modified_time);
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(PPB_URLRequestInfo_Proxy);
|
| };
|
|
|
|
|