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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 IPC_STRUCT_END() | 73 IPC_STRUCT_END() |
74 | 74 |
75 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceRelease_Params) | 75 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceRelease_Params) |
76 IPC_STRUCT_MEMBER(int32, surface_id) | 76 IPC_STRUCT_MEMBER(int32, surface_id) |
77 IPC_STRUCT_MEMBER(int32, route_id) | 77 IPC_STRUCT_MEMBER(int32, route_id) |
78 IPC_STRUCT_END() | 78 IPC_STRUCT_END() |
79 | 79 |
80 IPC_STRUCT_BEGIN(AcceleratedSurfaceMsg_BufferPresented_Params) | 80 IPC_STRUCT_BEGIN(AcceleratedSurfaceMsg_BufferPresented_Params) |
81 IPC_STRUCT_MEMBER(std::string, mailbox_name) | 81 IPC_STRUCT_MEMBER(std::string, mailbox_name) |
82 IPC_STRUCT_MEMBER(uint32, sync_point) | 82 IPC_STRUCT_MEMBER(uint32, sync_point) |
| 83 #if defined(OS_MACOSX) |
| 84 IPC_STRUCT_MEMBER(int32, renderer_id) |
| 85 #endif |
83 IPC_STRUCT_END() | 86 IPC_STRUCT_END() |
84 | 87 |
85 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage) | 88 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage) |
86 IPC_STRUCT_MEMBER(int32, id) | 89 IPC_STRUCT_MEMBER(int32, id) |
87 IPC_STRUCT_MEMBER(std::string, message) | 90 IPC_STRUCT_MEMBER(std::string, message) |
88 IPC_STRUCT_END() | 91 IPC_STRUCT_END() |
89 | 92 |
90 #if defined(OS_ANDROID) | 93 #if defined(OS_ANDROID) |
91 IPC_STRUCT_BEGIN(GpuStreamTextureMsg_MatrixChanged_Params) | 94 IPC_STRUCT_BEGIN(GpuStreamTextureMsg_MatrixChanged_Params) |
92 IPC_STRUCT_MEMBER(float, m00) | 95 IPC_STRUCT_MEMBER(float, m00) |
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 | 656 |
654 // Confirm decoder has been flushed. | 657 // Confirm decoder has been flushed. |
655 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 658 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
656 | 659 |
657 // Confirm decoder has been reset. | 660 // Confirm decoder has been reset. |
658 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 661 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
659 | 662 |
660 // Video decoder has encountered an error. | 663 // Video decoder has encountered an error. |
661 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 664 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
662 uint32) /* Error ID */ | 665 uint32) /* Error ID */ |
OLD | NEW |