Index: content/common/view_messages.h |
diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
index fa24c49ff9ac52c0116083e4ac9d722dffa54528..d8506e03814eb7566664cc27a7ec2d88a8a6b781 100644 |
--- a/content/common/view_messages.h |
+++ b/content/common/view_messages.h |
@@ -907,10 +907,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) |
@@ -960,6 +956,16 @@ 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 */) |
+ |
+// 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, |
Sami
2014/10/10 13:32:33
Please still keep this in the "messages sent from
simonhong
2014/10/15 01:04:21
Done.
|
+ bool /* enabled */) |
+ |
// ----------------------------------------------------------------------------- |
// Messages sent from the renderer to the browser. |
@@ -1586,12 +1592,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 */, |