| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
| 6 // header guard. | 6 // header guard. |
| 7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1308 // the tag sent along with ViewMsg_PaintAtSize. | 1308 // the tag sent along with ViewMsg_PaintAtSize. |
| 1309 IPC_MESSAGE_ROUTED2(ViewHostMsg_PaintAtSize_ACK, | 1309 IPC_MESSAGE_ROUTED2(ViewHostMsg_PaintAtSize_ACK, |
| 1310 int /* tag */, | 1310 int /* tag */, |
| 1311 gfx::Size /* size */) | 1311 gfx::Size /* size */) |
| 1312 | 1312 |
| 1313 // Sent to update part of the view. In response to this message, the host | 1313 // Sent to update part of the view. In response to this message, the host |
| 1314 // generates a ViewMsg_UpdateRect_ACK message. | 1314 // generates a ViewMsg_UpdateRect_ACK message. |
| 1315 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, | 1315 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, |
| 1316 ViewHostMsg_UpdateRect_Params) | 1316 ViewHostMsg_UpdateRect_Params) |
| 1317 | 1317 |
| 1318 // Sent by the renderer when GPU compositing is enabled or disabled to notify | 1318 // Sent by the renderer when accelerated compositing is enabled or disabled to |
| 1319 // the browser whether or not is should do paiting. | 1319 // notify the browser whether or not is should do painting. |
| 1320 IPC_MESSAGE_ROUTED1(ViewHostMsg_GpuRenderingActivated, | 1320 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidActivateAcceleratedCompositing, |
| 1321 bool /* true if the GPU process renders to window */) | 1321 bool /* true if the accelerated compositor is actve */) |
| 1322 | 1322 |
| 1323 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. | 1323 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. |
| 1324 // Payload is a WebInputEvent::Type which is the type of the event, followed | 1324 // Payload is a WebInputEvent::Type which is the type of the event, followed |
| 1325 // by an optional WebInputEvent which is provided only if the event was not | 1325 // by an optional WebInputEvent which is provided only if the event was not |
| 1326 // processed. | 1326 // processed. |
| 1327 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) | 1327 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) |
| 1328 | 1328 |
| 1329 IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus) | 1329 IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus) |
| 1330 IPC_MESSAGE_ROUTED0(ViewHostMsg_Blur) | 1330 IPC_MESSAGE_ROUTED0(ViewHostMsg_Blur) |
| 1331 | 1331 |
| (...skipping 1749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3081 base::PlatformFileInfo, /* info */ | 3081 base::PlatformFileInfo, /* info */ |
| 3082 base::PlatformFileError /* error_code */) | 3082 base::PlatformFileError /* error_code */) |
| 3083 | 3083 |
| 3084 // Get the directory's contents. | 3084 // Get the directory's contents. |
| 3085 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 3085 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
| 3086 FilePath /* path */, | 3086 FilePath /* path */, |
| 3087 PepperDirContents, /* contents */ | 3087 PepperDirContents, /* contents */ |
| 3088 base::PlatformFileError /* error_code */) | 3088 base::PlatformFileError /* error_code */) |
| 3089 | 3089 |
| 3090 IPC_END_MESSAGES(ViewHost) | 3090 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |