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

Unified Diff: ppapi/proxy/ppb_flash_proxy.h

Issue 10913257: Convert url request info to new proxy API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 3 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/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_flash_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_flash_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698