| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index 3421e4af99ff72800fb2846fdc3c2db33b0865f8..9e9ea06d1187e24008f93cbebb79e25c439d37d0 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -975,6 +975,10 @@ IPC_MESSAGE_ROUTED1(ViewMsg_ForceRedraw,
|
| IPC_MESSAGE_ROUTED1(ViewMsg_BeginFrame,
|
| cc::BeginFrameArgs /* args */)
|
|
|
| +// Sent by the browser to deliver a compositor proto to the renderer.
|
| +IPC_MESSAGE_ROUTED1(ViewMsg_HandleCompositorProto,
|
| + std::vector<uint8_t> /* proto */)
|
| +
|
| // -----------------------------------------------------------------------------
|
| // Messages sent from the renderer to the browser.
|
|
|
| @@ -1345,6 +1349,10 @@ IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstVisuallyNonEmptyPaint)
|
| // See https://crbug.com/537793.
|
| IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstPaintAfterLoad)
|
|
|
| +// Sent by the renderer to deliver a compositor proto to the browser.
|
| +IPC_MESSAGE_ROUTED1(ViewHostMsg_ForwardCompositorProto,
|
| + std::vector<uint8_t> /* proto */)
|
| +
|
| #if defined(OS_ANDROID)
|
| // Response to ViewMsg_FindMatchRects.
|
| //
|
|
|