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

Unified Diff: content/common/android/sync_compositor_messages.h

Issue 2174203002: OnDrawHardware() implementation with async messages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Further changes. Created 4 years, 5 months 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/android/sync_compositor_messages.h
diff --git a/content/common/android/sync_compositor_messages.h b/content/common/android/sync_compositor_messages.h
index 68af4d74201086567a73e32aa7c6cb50e69794e3..854e280fb8707b60bdbee4614e97bffd3d3cdc60 100644
--- a/content/common/android/sync_compositor_messages.h
+++ b/content/common/android/sync_compositor_messages.h
@@ -131,6 +131,9 @@ IPC_SYNC_MESSAGE_ROUTED1_3(SyncCompositorMsg_DemandDrawHw,
uint32_t /* output_surface_id */,
cc::CompositorFrame)
+IPC_MESSAGE_ROUTED1(CompositorMsg_DemandDrawHw,
+ content::SyncCompositorDemandDrawHwParams);
+
IPC_SYNC_MESSAGE_ROUTED1_2(SyncCompositorMsg_SetSharedMemory,
content::SyncCompositorSetSharedMemoryParams,
bool /* success */,
@@ -165,3 +168,7 @@ IPC_MESSAGE_ROUTED0(SyncCompositorHostMsg_OutputSurfaceCreated);
IPC_MESSAGE_ROUTED1(SyncCompositorHostMsg_UpdateState,
content::SyncCompositorCommonRendererParams)
+
+IPC_MESSAGE_ROUTED2(CompositorHostMsg_Frame,
+ uint32_t /* output_surface_id */,
+ cc::CompositorFrame);

Powered by Google App Engine
This is Rietveld 408576698