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

Unified Diff: content/common/browser_plugin_messages.h

Issue 11028019: Browser plugin: Implement loadRedirect event. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflicts. Created 8 years, 2 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: content/common/browser_plugin_messages.h
diff --git a/content/common/browser_plugin_messages.h b/content/common/browser_plugin_messages.h
index a853efb5ba56fbc169a28096a80dac7c66dad57a..8d8a608a2754b54cb7e49e8137812095d655a573 100644
--- a/content/common/browser_plugin_messages.h
+++ b/content/common/browser_plugin_messages.h
@@ -147,6 +147,14 @@ IPC_MESSAGE_CONTROL4(BrowserPluginMsg_LoadAbort,
bool /* is_top_level */,
std::string /* type */)
+// When the guest redirects a navigation, the browser process informs the
+// embedder through the BrowserPluginMsg_LoadRedirect message.
+IPC_MESSAGE_CONTROL4(BrowserPluginMsg_LoadRedirect,
+ int /* instance_id */,
+ GURL /* old_url */,
+ GURL /* new_url */,
+ bool /* is_top_level */)
+
// When the guest navigates, the browser process informs the embedder through
// the BrowserPluginMsg_DidNavigate message.
IPC_MESSAGE_CONTROL3(BrowserPluginMsg_DidNavigate,
« no previous file with comments | « content/browser/browser_plugin/test_browser_plugin_guest.cc ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698