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

Unified Diff: webkit/plugins/ppapi/ppapi_plugin_instance.h

Issue 6745021: Rename PPB_Flash::NavigateToURL() (to Navigate()) and make it take an URLRequestInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: webkit/plugins/ppapi/ppapi_plugin_instance.h
diff --git a/webkit/plugins/ppapi/ppapi_plugin_instance.h b/webkit/plugins/ppapi/ppapi_plugin_instance.h
index 176dbe707b69d9b1f6de9389128ec20a5fdd63db..655a8b1132bb17f98d95e22fcfc2fff692e6a5b0 100644
--- a/webkit/plugins/ppapi/ppapi_plugin_instance.h
+++ b/webkit/plugins/ppapi/ppapi_plugin_instance.h
@@ -64,6 +64,7 @@ class PPB_Graphics2D_Impl;
class PPB_ImageData_Impl;
class PPB_Surface3D_Impl;
class PPB_URLLoader_Impl;
+class PPB_URLRequestInfo_Impl;
class Resource;
// Represents one time a plugin appears on one web page.
@@ -217,7 +218,9 @@ class PluginInstance : public base::RefCounted<PluginInstance> {
void SetFullscreen(bool fullscreen, bool delay_report);
// Implementation of PPB_Flash.
- bool NavigateToURL(const char* url, const char* target);
+ int32_t Navigate(PPB_URLRequestInfo_Impl* request,
+ const char* target,
+ bool from_user_action);
// Implementation of PPB_Messaging and PPP_Messaging.
void PostMessage(PP_Var message);

Powered by Google App Engine
This is Rietveld 408576698