Chromium Code Reviews| Index: content/common/browser_plugin_messages.h |
| diff --git a/content/common/browser_plugin_messages.h b/content/common/browser_plugin_messages.h |
| index 78e143d9779573b388fabbcfb661b79a25449c3d..a78a63723445408058449b3e9a4f92425eb34dc1 100644 |
| --- a/content/common/browser_plugin_messages.h |
| +++ b/content/common/browser_plugin_messages.h |
| @@ -14,8 +14,8 @@ |
| #include "ipc/ipc_channel_handle.h" |
| #include "ipc/ipc_message_macros.h" |
| #include "ipc/ipc_message_utils.h" |
| -#include "third_party/WebKit/Source/WebKit/chromium/public/WebDragStatus.h" |
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" |
| +#include "third_party/WebKit/Source/WebKit/chromium/public/WebDragStatus.h" |
| #include "ui/gfx/point.h" |
| #include "ui/gfx/rect.h" |
| #include "ui/gfx/size.h" |
| @@ -232,6 +232,13 @@ IPC_MESSAGE_ROUTED3(BrowserPluginHostMsg_PluginAtPositionResponse, |
| int /* request_id */, |
| gfx::Point /* position */) |
| +// Tells the guest that its request for media permission has been allowed or |
| +// denied. |
|
Charlie Reis
2012/12/07 19:16:25
Might want to note that this occurs before the sec
lazyboy
2012/12/07 22:50:44
Correct. Added notes.
|
| +IPC_MESSAGE_ROUTED3(BrowserPluginHostMsg_AllowMediaAccess, |
| + int /* instance_id */, |
| + int /* request_id */, |
| + bool /* allow */) |
| + |
| // ----------------------------------------------------------------------------- |
| // These messages are from the guest renderer to the browser process |
| @@ -294,6 +301,12 @@ IPC_MESSAGE_ROUTED3(BrowserPluginMsg_GuestGone, |
| int /* process_id */, |
| int /* This is really base::TerminationStatus */) |
| +// When the guest requests media access, the browser process forwards this |
| +// request to the embeddder through this message. |
| +IPC_MESSAGE_ROUTED2(BrowserPluginMsg_RequestMediaAccess, |
| + int /* instance_id */, |
| + int /* request_id */) |
| + |
| // When the user tabs to the end of the tab stops of a guest, the browser |
| // process informs the embedder to tab out of the browser plugin. |
| IPC_MESSAGE_ROUTED2(BrowserPluginMsg_AdvanceFocus, |