OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1584 | 1584 |
1585 // Sent to update part of the view. In response to this message, the host | 1585 // Sent to update part of the view. In response to this message, the host |
1586 // generates a ViewMsg_UpdateRect_ACK message. | 1586 // generates a ViewMsg_UpdateRect_ACK message. |
1587 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, | 1587 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, |
1588 ViewHostMsg_UpdateRect_Params) | 1588 ViewHostMsg_UpdateRect_Params) |
1589 | 1589 |
1590 // Sent to unblock the browser's UI thread if it is waiting on an UpdateRect, | 1590 // Sent to unblock the browser's UI thread if it is waiting on an UpdateRect, |
1591 // which may get delayed until the browser's UI unblocks. | 1591 // which may get delayed until the browser's UI unblocks. |
1592 IPC_MESSAGE_ROUTED0(ViewHostMsg_UpdateIsDelayed) | 1592 IPC_MESSAGE_ROUTED0(ViewHostMsg_UpdateIsDelayed) |
1593 | 1593 |
| 1594 // Sent by the renderer when the parameters for vsync alignment have changed. |
| 1595 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateVSyncParameters, |
| 1596 base::TimeTicks /* timebase */, |
| 1597 base::TimeDelta /* interval */) |
| 1598 |
1594 // Sent by the renderer when accelerated compositing is enabled or disabled to | 1599 // Sent by the renderer when accelerated compositing is enabled or disabled to |
1595 // notify the browser whether or not is should do painting. | 1600 // notify the browser whether or not is should do painting. |
1596 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidActivateAcceleratedCompositing, | 1601 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidActivateAcceleratedCompositing, |
1597 bool /* true if the accelerated compositor is actve */) | 1602 bool /* true if the accelerated compositor is actve */) |
1598 | 1603 |
1599 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. | 1604 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. |
1600 IPC_MESSAGE_ROUTED2(ViewHostMsg_HandleInputEvent_ACK, | 1605 IPC_MESSAGE_ROUTED2(ViewHostMsg_HandleInputEvent_ACK, |
1601 WebKit::WebInputEvent::Type, | 1606 WebKit::WebInputEvent::Type, |
1602 bool /* processed */) | 1607 bool /* processed */) |
1603 | 1608 |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2181 // (according to the value of is_hung). The browser can give the user the | 2186 // (according to the value of is_hung). The browser can give the user the |
2182 // option of killing the plugin. | 2187 // option of killing the plugin. |
2183 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2188 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2184 int /* plugin_child_id */, | 2189 int /* plugin_child_id */, |
2185 FilePath /* path */, | 2190 FilePath /* path */, |
2186 bool /* is_hung */) | 2191 bool /* is_hung */) |
2187 | 2192 |
2188 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2193 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2189 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2194 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2190 int /* orientation */) | 2195 int /* orientation */) |
OLD | NEW |