| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include <map> | 5 #include <map> |
| 6 #include <set> | 6 #include <set> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1272 // the tag sent along with ViewMsg_PaintAtSize. | 1272 // the tag sent along with ViewMsg_PaintAtSize. |
| 1273 IPC_MESSAGE_ROUTED2(ViewHostMsg_PaintAtSize_ACK, | 1273 IPC_MESSAGE_ROUTED2(ViewHostMsg_PaintAtSize_ACK, |
| 1274 int /* tag */, | 1274 int /* tag */, |
| 1275 gfx::Size /* size */) | 1275 gfx::Size /* size */) |
| 1276 | 1276 |
| 1277 // Sent to update part of the view. In response to this message, the host | 1277 // Sent to update part of the view. In response to this message, the host |
| 1278 // generates a ViewMsg_UpdateRect_ACK message. | 1278 // generates a ViewMsg_UpdateRect_ACK message. |
| 1279 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, | 1279 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, |
| 1280 ViewHostMsg_UpdateRect_Params) | 1280 ViewHostMsg_UpdateRect_Params) |
| 1281 | 1281 |
| 1282 // Sent to update the current scroll offset. |
| 1283 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateScrollOffset, gfx::Size); |
| 1284 |
| 1282 // Sent by the renderer when accelerated compositing is enabled or disabled to | 1285 // Sent by the renderer when accelerated compositing is enabled or disabled to |
| 1283 // notify the browser whether or not is should do painting. | 1286 // notify the browser whether or not is should do painting. |
| 1284 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidActivateAcceleratedCompositing, | 1287 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidActivateAcceleratedCompositing, |
| 1285 bool /* true if the accelerated compositor is actve */) | 1288 bool /* true if the accelerated compositor is actve */) |
| 1286 | 1289 |
| 1287 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. | 1290 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. |
| 1288 // Payload is a WebInputEvent::Type which is the type of the event, followed | 1291 // Payload is a WebInputEvent::Type which is the type of the event, followed |
| 1289 // by an optional WebInputEvent which is provided only if the event was not | 1292 // by an optional WebInputEvent which is provided only if the event was not |
| 1290 // processed. | 1293 // processed. |
| 1291 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) | 1294 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) |
| (...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2630 int /* request_id */, | 2633 int /* request_id */, |
| 2631 PP_Flash_NetAddress /* addr */) | 2634 PP_Flash_NetAddress /* addr */) |
| 2632 | 2635 |
| 2633 // JavaScript related messages ----------------------------------------------- | 2636 // JavaScript related messages ----------------------------------------------- |
| 2634 | 2637 |
| 2635 // Notify the JavaScript engine in the render to change its parameters | 2638 // Notify the JavaScript engine in the render to change its parameters |
| 2636 // while performing stress testing. | 2639 // while performing stress testing. |
| 2637 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2640 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2638 int /* cmd */, | 2641 int /* cmd */, |
| 2639 int /* param */) | 2642 int /* param */) |
| OLD | NEW |