| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) | 255 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) |
| 256 | 256 |
| 257 // Tells the GPU process if it's worth suggesting release of the front surface. | 257 // Tells the GPU process if it's worth suggesting release of the front surface. |
| 258 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected, | 258 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected, |
| 259 bool /* is_protected */, | 259 bool /* is_protected */, |
| 260 uint32 /* protection_state_id */) | 260 uint32 /* protection_state_id */) |
| 261 | 261 |
| 262 // Tells the GPU process that the browser process has handled the swap | 262 // Tells the GPU process that the browser process has handled the swap |
| 263 // buffers or post sub-buffer request. A non-zero sync point means | 263 // buffers or post sub-buffer request. A non-zero sync point means |
| 264 // that we should wait for the sync point. | 264 // that we should wait for the sync point. |
| 265 IPC_MESSAGE_ROUTED1(AcceleratedSurfaceMsg_BufferPresented, | 265 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented, |
| 266 bool /* presented */, |
| 266 uint32 /* sync_point */) | 267 uint32 /* sync_point */) |
| 267 | 268 |
| 268 // Tells the GPU process to remove all contexts. | 269 // Tells the GPU process to remove all contexts. |
| 269 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) | 270 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) |
| 270 | 271 |
| 271 // Tells the GPU process to crash. | 272 // Tells the GPU process to crash. |
| 272 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) | 273 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) |
| 273 | 274 |
| 274 // Tells the GPU process to hang. | 275 // Tells the GPU process to hang. |
| 275 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) | 276 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 | 633 |
| 633 // Confirm decoder has been flushed. | 634 // Confirm decoder has been flushed. |
| 634 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 635 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
| 635 | 636 |
| 636 // Confirm decoder has been reset. | 637 // Confirm decoder has been reset. |
| 637 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 638 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
| 638 | 639 |
| 639 // Video decoder has encountered an error. | 640 // Video decoder has encountered an error. |
| 640 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 641 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
| 641 uint32) /* Error ID */ | 642 uint32) /* Error ID */ |
| OLD | NEW |