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 */, |