| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index c186f21647eee0f7de0e92473e89e313746427c5..a498b41bbf57573fabe3a017cc411533e7b67b8f 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -1386,6 +1386,14 @@ IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem,
|
| IPC_MESSAGE_ROUTED1(ViewMsg_SwapCompositorFrameAck,
|
| cc::CompositorFrameAck /* ack */)
|
|
|
| +// Sent from the browser to ask the renderer for a snapshot of the current view.
|
| +// The renderer replies with whether the snapshot succeeded and the SkBitmap.
|
| +IPC_MESSAGE_ROUTED1(ViewMsg_Snapshot,
|
| + gfx::Rect /* src_subrect */)
|
| +IPC_MESSAGE_ROUTED2(ViewHostMsg_Snapshot,
|
| + bool, /* success */
|
| + SkBitmap /* bitmap */)
|
| +
|
| // -----------------------------------------------------------------------------
|
| // Messages sent from the renderer to the browser.
|
|
|
|
|