| Index: ppapi/proxy/ppb_flash_proxy.h
|
| diff --git a/ppapi/proxy/ppb_flash_proxy.h b/ppapi/proxy/ppb_flash_proxy.h
|
| index 99dfabd12795eb3d91d77c488d69540654e04885..03ecf891bd43982e1f75cfd59f00c65bfb9fbb52 100644
|
| --- a/ppapi/proxy/ppb_flash_proxy.h
|
| +++ b/ppapi/proxy/ppb_flash_proxy.h
|
| @@ -24,7 +24,7 @@ struct PPB_Flash_Print_1_0;
|
|
|
| namespace ppapi {
|
|
|
| -struct PPB_URLRequestInfo_Data;
|
| +struct URLRequestInfoData;
|
|
|
| namespace proxy {
|
|
|
| @@ -64,6 +64,10 @@ class PPB_Flash_Proxy : public InterfaceProxy, public PPB_Flash_Shared {
|
| PP_Resource request_info,
|
| const char* target,
|
| PP_Bool from_user_action) OVERRIDE;
|
| + virtual int32_t Navigate(PP_Instance instance,
|
| + const URLRequestInfoData& data,
|
| + const char* target,
|
| + PP_Bool from_user_action) OVERRIDE;
|
| virtual void RunMessageLoop(PP_Instance instance) OVERRIDE;
|
| virtual void QuitMessageLoop(PP_Instance instance) OVERRIDE;
|
| virtual double GetLocalTimeZoneOffset(PP_Instance instance,
|
| @@ -138,7 +142,7 @@ class PPB_Flash_Proxy : public InterfaceProxy, public PPB_Flash_Shared {
|
| const std::string& url,
|
| SerializedVarReturnValue result);
|
| void OnHostMsgNavigate(PP_Instance instance,
|
| - const PPB_URLRequestInfo_Data& data,
|
| + const URLRequestInfoData& data,
|
| const std::string& target,
|
| PP_Bool from_user_action,
|
| int32_t* result);
|
|
|