Index: content/common/view_messages.h |
diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
index 426ac1faa1213af5657497bcc4901e15d81c1674..6ce4333e4c6281d787f3e13141b4963d315f88c0 100644 |
--- a/content/common/view_messages.h |
+++ b/content/common/view_messages.h |
@@ -905,10 +905,6 @@ IPC_MESSAGE_ROUTED3(ViewMsg_UpdateTopControlsState, |
IPC_MESSAGE_ROUTED0(ViewMsg_ShowImeIfNeeded) |
-// Sent by the browser when the renderer should generate a new frame. |
-IPC_MESSAGE_ROUTED1(ViewMsg_BeginFrame, |
- cc::BeginFrameArgs /* args */) |
- |
// Sent by the browser when an IME update that requires acknowledgement has been |
// processed on the browser side. |
IPC_MESSAGE_ROUTED0(ViewMsg_ImeEventAck) |
@@ -958,9 +954,19 @@ IPC_MESSAGE_ROUTED0(ViewMsg_SelectWordAroundCaret) |
IPC_MESSAGE_ROUTED1(ViewMsg_ForceRedraw, |
int /* request_id */) |
+// Sent by the browser when the renderer should generate a new frame. |
+IPC_MESSAGE_ROUTED1(ViewMsg_BeginFrame, |
+ cc::BeginFrameArgs /* args */) |
+ |
// ----------------------------------------------------------------------------- |
// Messages sent from the renderer to the browser. |
+// Sent by renderer to request a ViewMsg_BeginFrame message for upcoming |
+// display events. If |enabled| is true, the BeginFrame message will continue |
+// to be be delivered until the notification is disabled. |
+IPC_MESSAGE_ROUTED1(ViewHostMsg_SetNeedsBeginFrames, |
+ bool /* enabled */) |
+ |
// Sent by the renderer when it is creating a new window. The browser creates |
// a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
// MSG_ROUTING_NONE, the view couldn't be created. |
@@ -1587,12 +1593,6 @@ IPC_MESSAGE_CONTROL3(ViewHostMsg_RunWebAudioMediaCodec, |
base::FileDescriptor /* pcm_output */, |
uint32_t /* data_size*/) |
-// Sent by renderer to request a ViewMsg_BeginFrame message for upcoming |
-// display events. If |enabled| is true, the BeginFrame message will continue |
-// to be be delivered until the notification is disabled. |
-IPC_MESSAGE_ROUTED1(ViewHostMsg_SetNeedsBeginFrame, |
- bool /* enabled */) |
- |
// Reply to the ViewMsg_ExtractSmartClipData message. |
IPC_MESSAGE_ROUTED3(ViewHostMsg_SmartClipDataExtracted, |
base::string16 /* text */, |