Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Unified Diff: content/common/view_messages.h

Issue 1442853005: Add IPC messages to transfer compositor protos (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Swapped char to uint8_t, added checked_cast, updated description Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
//

Powered by Google App Engine
This is Rietveld 408576698