Chromium Code Reviews| Index: content/common/frame_messages.h |
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
| index 31fa6039d956dcf194fc077a6440a4dd1cce9896..2f74eccd64dea95cf105f5b73fb62eb3d73d5f31 100644 |
| --- a/content/common/frame_messages.h |
| +++ b/content/common/frame_messages.h |
| @@ -380,6 +380,11 @@ IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction, |
| // Requests that the RenderFrame or RenderFrameProxy sets its opener to null. |
| IPC_MESSAGE_ROUTED0(FrameMsg_DisownOpener) |
| +// Requests that the RenderFrame send back a response synchronized with the |
|
Tom Sepez
2015/01/08 18:15:27
nit: not sure what "synchronized with the mechansi
Ignacio Solla
2015/01/08 18:50:20
Let me know if the comment is now clearer.
|
| +// mechanism used to deliver new frames to the screen. |
| +IPC_MESSAGE_ROUTED1(FrameMsg_FlushVisualStateRequest, |
| + int /* id */) |
| + |
| // Instructs the renderer to create a new RenderFrame object with |routing_id|. |
| // The new frame should be created as a child of the object identified by |
| // |parent_routing_id| or as top level if that is MSG_ROUTING_NONE. |
| @@ -830,6 +835,11 @@ IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, |
| // after the frame has painted something. |
| IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) |
| +// Sent as a response to FrameMsg_FlushVisualStateRequest. |
| +// The message is delivered using RenderWidget::QueueMessage. |
| +IPC_MESSAGE_ROUTED1(FrameHostMsg_FlushVisualStateResponse, |
| + int /* id */) |
| + |
| #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| // Message to show/hide a popup menu using native controls. |