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 // Multiply-included message file, hence no include guard here, but see below | 5 // Multiply-included message file, hence no include guard here, but see below |
6 // for a much smaller-than-usual include guard section. | 6 // for a much smaller-than-usual include guard section. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) | 268 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) |
269 | 269 |
270 // Tells the GPU process if it's worth suggesting release of the front surface. | 270 // Tells the GPU process if it's worth suggesting release of the front surface. |
271 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected, | 271 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected, |
272 bool /* is_protected */, | 272 bool /* is_protected */, |
273 uint32 /* protection_state_id */) | 273 uint32 /* protection_state_id */) |
274 | 274 |
275 // Tells the GPU process that the browser process has handled the swap | 275 // Tells the GPU process that the browser process has handled the swap |
276 // buffers or post sub-buffer request. A non-zero sync point means | 276 // buffers or post sub-buffer request. A non-zero sync point means |
277 // that we should wait for the sync point. | 277 // that we should wait for the sync point. |
278 IPC_MESSAGE_ROUTED1(AcceleratedSurfaceMsg_BufferPresented, | 278 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented, |
| 279 bool /* presented */, |
279 uint32 /* sync_point */) | 280 uint32 /* sync_point */) |
280 | 281 |
281 // Tells the GPU process to remove all contexts. | 282 // Tells the GPU process to remove all contexts. |
282 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) | 283 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) |
283 | 284 |
284 // Tells the GPU process to crash. | 285 // Tells the GPU process to crash. |
285 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) | 286 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) |
286 | 287 |
287 // Tells the GPU process to hang. | 288 // Tells the GPU process to hang. |
288 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) | 289 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 | 650 |
650 // Confirm decoder has been flushed. | 651 // Confirm decoder has been flushed. |
651 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 652 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
652 | 653 |
653 // Confirm decoder has been reset. | 654 // Confirm decoder has been reset. |
654 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 655 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
655 | 656 |
656 // Video decoder has encountered an error. | 657 // Video decoder has encountered an error. |
657 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 658 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
658 uint32) /* Error ID */ | 659 uint32) /* Error ID */ |
OLD | NEW |