Chromium Code Reviews| Index: content/common/view_messages.h |
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
| index f492761d844c903f0eecd9ed105631bd66cf022c..56b7485ecbe68b621ea2487c5700ffc069a4e0c2 100644 |
| --- a/content/common/view_messages.h |
| +++ b/content/common/view_messages.h |
| @@ -1932,6 +1932,16 @@ IPC_MESSAGE_ROUTED3(ViewHostMsg_WebUISend, |
| std::string /* message */, |
| base::ListValue /* args */) |
| +// Requests a snapshot of the given window |
|
Ken Russell (switch to Gerrit)
2012/11/08 22:27:44
Add "." here and below.
|
| +IPC_MESSAGE_ROUTED1(ViewHostMsg_GetWindowSnapshot, |
| + int /* message id */) |
|
jam
2012/11/09 02:21:29
nit: here and below, just one space before start o
|
| + |
| +// Notifies the render view that a snapshot has been retrieved |
| +IPC_MESSAGE_ROUTED3(ViewMsg_WindowSnapshotCompleted, |
| + int /* message id */, |
| + gfx::Size /* image dimensions */, |
|
jam
2012/11/09 02:21:29
nit: here and in the rest of the lines you added,
|
| + std::vector<unsigned char> /* png data */) |
| + |
| // A renderer sends this to the browser process when it wants to create a ppapi |
| // plugin. The browser will create the plugin process if necessary, and will |
| // return a handle to the channel on success. |