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

Unified Diff: content/common/browser_plugin_messages.h

Issue 10960003: Browser Plugin: Implement Back, Forward, and Go. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a test 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
Index: content/common/browser_plugin_messages.h
diff --git a/content/common/browser_plugin_messages.h b/content/common/browser_plugin_messages.h
index 17ddffff5960a7e7fa351ff6b7ec2d125d0ed714..403b0282e5d7d089f5b653169d929c733dba2ded 100644
--- a/content/common/browser_plugin_messages.h
+++ b/content/common/browser_plugin_messages.h
@@ -27,6 +27,18 @@
// -----------------------------------------------------------------------------
// These messages are from the embedder to the browser process.
+// Tells the guest to navigate to the previous entry.
+IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_Back,
+ int /* instance_id */)
+
+// Tells the guest to navigate to the next entry.
+IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_Forward,
+ int /* instance_id */)
+
+IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_Go,
lazyboy 2012/09/20 20:05:42 Add comment for this one too.
Fady Samuel 2012/09/21 15:21:56 Done.
+ int /* instance_id */,
+ int /* relative_index */)
+
// Tells the guest to focus or defocus itself.
IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_SetFocus,
int /* instance_id */,

Powered by Google App Engine
This is Rietveld 408576698