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 f052b70135eac1d4fe3ca92ecf243a6fd680d1de..022bf440948ddd277df2276f8b3e5a03423a123c 100644 |
| --- a/content/common/browser_plugin_messages.h |
| +++ b/content/common/browser_plugin_messages.h |
| @@ -57,17 +57,6 @@ IPC_MESSAGE_ROUTED3(BrowserPluginHostMsg_UpdateRect_ACK, |
| int /* message_id */, |
| gfx::Size /* repaint_view_size */) |
| -// A BrowserPlugin sends this to the browser process when it wants to navigate |
| -// to a given src URL. If a guest WebContents already exists, it will navigate |
| -// that WebContents. If not, it will create the WebContents, associate it with |
| -// the BrowserPlugin's browser-side BrowserPluginHost as a guest, and navigate |
| -// it to the requested URL. |
| -IPC_MESSAGE_ROUTED4(BrowserPluginHostMsg_NavigateGuest, |
| - int /* instance_id*/, |
| - int64 /* frame_id */, |
| - std::string /* src */, |
| - gfx::Size /* size */) |
| - |
| // When a BrowserPlugin has been removed from the embedder's DOM, it informs |
| // the browser process to cleanup the guest. |
| IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_PluginDestroyed, |
| @@ -96,6 +85,17 @@ IPC_STRUCT_BEGIN(BrowserPluginHostMsg_ResizeGuest_Params) |
| IPC_STRUCT_MEMBER(float, scale_factor) |
| IPC_STRUCT_END() |
| +// A BrowserPlugin sends this to the browser process when it wants to navigate |
| +// to a given src URL. If a guest WebContents already exists, it will navigate |
| +// that WebContents. If not, it will create the WebContents, associate it with |
| +// the BrowserPlugin's browser-side BrowserPluginHost as a guest, and navigate |
|
Fady Samuel
2012/09/24 22:16:58
This comment is out of date. Please update to ment
lazyboy
2012/09/25 17:57:22
Done.
|
| +// it to the requested URL. |
| +IPC_MESSAGE_ROUTED4(BrowserPluginHostMsg_NavigateGuest, |
| + int /* instance_id*/, |
| + int64 /* frame_id */, |
| + std::string /* src */, |
| + BrowserPluginHostMsg_ResizeGuest_Params /* resize_params */) |
| + |
| // A embedder sends this message to the browser when it wants |
| // to resize a guest plugin container so that the guest is relaid out |
| // according to the new size. |