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

Unified Diff: content/common/view_messages.h

Issue 240163005: Deliver IPC messages together with SwapCompositorFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disable browsertest for android for realz this time Created 6 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/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index e6fbda544d94dd7eba01f74dedbe909edfa98157..b822dc2dc63d5109ada1732904192392b681182a 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -1436,9 +1436,11 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateZoomLimits,
IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged,
bool /* enabled */)
-IPC_MESSAGE_ROUTED2(ViewHostMsg_SwapCompositorFrame,
- uint32 /* output_surface_id */,
- cc::CompositorFrame /* frame */)
+IPC_MESSAGE_ROUTED3(
+ ViewHostMsg_SwapCompositorFrame,
+ uint32 /* output_surface_id */,
+ cc::CompositorFrame /* frame */,
+ std::vector<IPC::Message> /* messages_to_deliver_with_frame */)
// Sent by the compositor when a flinging animation is stopped.
IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopFlinging)
@@ -1558,10 +1560,6 @@ IPC_MESSAGE_ROUTED0(ViewHostMsg_WillInsertBody)
IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFaviconURL,
std::vector<content::FaviconURL> /* candidates */)
-// Sent once a paint happens after the first non empty layout. In other words
-// after the page has painted something.
-IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstVisuallyNonEmptyPaint)
-
// Sent by the renderer to the browser to start a vibration with the given
// duration.
IPC_MESSAGE_CONTROL1(ViewHostMsg_Vibrate,

Powered by Google App Engine
This is Rietveld 408576698