Index: content/common/view_messages.h |
diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
index 605e465b065337e3b8e863edbbdaedda2c80bbfa..3f4e6fd74e30b9848bda1885a1dba430fe447cd3 100644 |
--- a/content/common/view_messages.h |
+++ b/content/common/view_messages.h |
@@ -2253,6 +2253,15 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateFaviconURL, |
IPC_MESSAGE_ROUTED1(ViewHostMsg_DidFirstVisuallyNonEmptyPaint, |
int /* page_id */) |
+// Sent by the renderer to the browser to start a vibration with the given |
+// duration. |
+IPC_MESSAGE_CONTROL1(ViewHostMsg_Vibrate, |
+ int64 /* milliseconds */) |
+ |
+// Sent by the renderer to the browser to cancel the currently running |
+// vibration, if there is one. |
+IPC_MESSAGE_CONTROL0(ViewHostMsg_CancelVibration) |
+ |
#if defined(OS_ANDROID) |
// Response to ViewMsg_FindMatchRects. |
// |
@@ -2294,15 +2303,6 @@ IPC_MESSAGE_CONTROL3(ViewHostMsg_RunWebAudioMediaCodec, |
IPC_MESSAGE_ROUTED1(ViewHostMsg_SetNeedsBeginFrame, |
bool /* enabled */) |
-// Sent by the renderer to the browser to start a vibration with the given |
-// duration. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_Vibrate, |
- int64 /* milliseconds */) |
- |
-// Sent by the renderer to the browser to cancel the currently running |
-// vibration, if there is one. |
-IPC_MESSAGE_CONTROL0(ViewHostMsg_CancelVibration) |
- |
#elif defined(OS_MACOSX) |
// Request that the browser load a font into shared memory for us. |
IPC_SYNC_MESSAGE_CONTROL1_3(ViewHostMsg_LoadFont, |