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 28 matching lines...) Expand all Loading... |
39 IPC_STRUCT_MEMBER(std::vector<int>, attribs) | 39 IPC_STRUCT_MEMBER(std::vector<int>, attribs) |
40 IPC_STRUCT_MEMBER(GURL, active_url) | 40 IPC_STRUCT_MEMBER(GURL, active_url) |
41 IPC_STRUCT_MEMBER(gfx::GpuPreference, gpu_preference) | 41 IPC_STRUCT_MEMBER(gfx::GpuPreference, gpu_preference) |
42 IPC_STRUCT_END() | 42 IPC_STRUCT_END() |
43 | 43 |
44 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceNew_Params) | 44 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceNew_Params) |
45 IPC_STRUCT_MEMBER(int32, surface_id) | 45 IPC_STRUCT_MEMBER(int32, surface_id) |
46 IPC_STRUCT_MEMBER(int32, width) | 46 IPC_STRUCT_MEMBER(int32, width) |
47 IPC_STRUCT_MEMBER(int32, height) | 47 IPC_STRUCT_MEMBER(int32, height) |
48 IPC_STRUCT_MEMBER(uint64, surface_handle) | 48 IPC_STRUCT_MEMBER(uint64, surface_handle) |
| 49 IPC_STRUCT_MEMBER(std::string, mailbox_name) |
49 IPC_STRUCT_MEMBER(int32, route_id) | 50 IPC_STRUCT_MEMBER(int32, route_id) |
50 #if defined(OS_MACOSX) | 51 #if defined(OS_MACOSX) |
51 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) | 52 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) |
52 IPC_STRUCT_MEMBER(bool, create_transport_dib) | 53 IPC_STRUCT_MEMBER(bool, create_transport_dib) |
53 #endif | 54 #endif |
54 IPC_STRUCT_END() | 55 IPC_STRUCT_END() |
55 | 56 |
56 #undef IPC_MESSAGE_EXPORT | 57 #undef IPC_MESSAGE_EXPORT |
57 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 58 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
58 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params) | 59 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params) |
59 IPC_STRUCT_MEMBER(int32, surface_id) | 60 IPC_STRUCT_MEMBER(int32, surface_id) |
60 IPC_STRUCT_MEMBER(uint64, surface_handle) | 61 IPC_STRUCT_MEMBER(uint64, surface_handle) |
61 IPC_STRUCT_MEMBER(int32, route_id) | 62 IPC_STRUCT_MEMBER(int32, route_id) |
62 IPC_STRUCT_MEMBER(gfx::Size, size) | 63 IPC_STRUCT_MEMBER(gfx::Size, size) |
63 #if defined(OS_MACOSX) | 64 #if defined(OS_MACOSX) |
64 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) | 65 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) |
65 #endif | 66 #endif |
66 IPC_STRUCT_MEMBER(uint32, protection_state_id) | |
67 IPC_STRUCT_MEMBER(bool, skip_ack) | |
68 IPC_STRUCT_END() | 67 IPC_STRUCT_END() |
69 #undef IPC_MESSAGE_EXPORT | 68 #undef IPC_MESSAGE_EXPORT |
70 #define IPC_MESSAGE_EXPORT | 69 #define IPC_MESSAGE_EXPORT |
71 | 70 |
72 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params) | 71 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params) |
73 IPC_STRUCT_MEMBER(int32, surface_id) | 72 IPC_STRUCT_MEMBER(int32, surface_id) |
74 IPC_STRUCT_MEMBER(uint64, surface_handle) | 73 IPC_STRUCT_MEMBER(uint64, surface_handle) |
75 IPC_STRUCT_MEMBER(int32, route_id) | 74 IPC_STRUCT_MEMBER(int32, route_id) |
76 IPC_STRUCT_MEMBER(int, x) | 75 IPC_STRUCT_MEMBER(int, x) |
77 IPC_STRUCT_MEMBER(int, y) | 76 IPC_STRUCT_MEMBER(int, y) |
78 IPC_STRUCT_MEMBER(int, width) | 77 IPC_STRUCT_MEMBER(int, width) |
79 IPC_STRUCT_MEMBER(int, height) | 78 IPC_STRUCT_MEMBER(int, height) |
80 IPC_STRUCT_MEMBER(gfx::Size, surface_size) | 79 IPC_STRUCT_MEMBER(gfx::Size, surface_size) |
81 #if defined(OS_MACOSX) | 80 #if defined(OS_MACOSX) |
82 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) | 81 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) |
83 #endif | 82 #endif |
84 IPC_STRUCT_MEMBER(uint32, protection_state_id) | |
85 IPC_STRUCT_END() | 83 IPC_STRUCT_END() |
86 | 84 |
87 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceRelease_Params) | 85 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceRelease_Params) |
88 IPC_STRUCT_MEMBER(int32, surface_id) | 86 IPC_STRUCT_MEMBER(int32, surface_id) |
89 IPC_STRUCT_MEMBER(uint64, identifier) | |
90 IPC_STRUCT_MEMBER(int32, route_id) | 87 IPC_STRUCT_MEMBER(int32, route_id) |
91 #if defined(OS_MACOSX) | 88 #if defined(OS_MACOSX) |
92 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) | 89 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) |
93 #endif | 90 #endif |
94 IPC_STRUCT_END() | 91 IPC_STRUCT_END() |
95 | 92 |
96 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage) | 93 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage) |
97 IPC_STRUCT_MEMBER(int32, id) | 94 IPC_STRUCT_MEMBER(int32, id) |
98 IPC_STRUCT_MEMBER(std::string, message) | 95 IPC_STRUCT_MEMBER(std::string, message) |
99 IPC_STRUCT_END() | 96 IPC_STRUCT_END() |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have) | 187 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have) |
191 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) | 188 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) |
192 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested) | 189 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested) |
193 IPC_STRUCT_TRAITS_END() | 190 IPC_STRUCT_TRAITS_END() |
194 | 191 |
195 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle) | 192 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle) |
196 IPC_STRUCT_TRAITS_MEMBER(handle) | 193 IPC_STRUCT_TRAITS_MEMBER(handle) |
197 IPC_STRUCT_TRAITS_MEMBER(transport) | 194 IPC_STRUCT_TRAITS_MEMBER(transport) |
198 IPC_STRUCT_TRAITS_MEMBER(parent_gpu_process_id) | 195 IPC_STRUCT_TRAITS_MEMBER(parent_gpu_process_id) |
199 IPC_STRUCT_TRAITS_MEMBER(parent_client_id) | 196 IPC_STRUCT_TRAITS_MEMBER(parent_client_id) |
200 IPC_STRUCT_TRAITS_MEMBER(parent_context_id) | |
201 IPC_STRUCT_TRAITS_MEMBER(parent_texture_id[0]) | |
202 IPC_STRUCT_TRAITS_MEMBER(parent_texture_id[1]) | |
203 IPC_STRUCT_TRAITS_MEMBER(sync_point) | |
204 IPC_STRUCT_TRAITS_END() | 197 IPC_STRUCT_TRAITS_END() |
205 | 198 |
206 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) | 199 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) |
207 IPC_ENUM_TRAITS(gfx::GpuPreference) | 200 IPC_ENUM_TRAITS(gfx::GpuPreference) |
208 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) | 201 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) |
209 | 202 |
210 IPC_ENUM_TRAITS(media::VideoCodecProfile) | 203 IPC_ENUM_TRAITS(media::VideoCodecProfile) |
211 | 204 |
212 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats) | 205 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats) |
213 IPC_STRUCT_TRAITS_MEMBER(global_texture_upload_count) | 206 IPC_STRUCT_TRAITS_MEMBER(global_texture_upload_count) |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 266 |
274 // Tells the GPU process' memory manager how many visible windows there are, so | 267 // Tells the GPU process' memory manager how many visible windows there are, so |
275 // it can partition memory amongst them. | 268 // it can partition memory amongst them. |
276 IPC_MESSAGE_CONTROL1(GpuMsg_SetVideoMemoryWindowCount, | 269 IPC_MESSAGE_CONTROL1(GpuMsg_SetVideoMemoryWindowCount, |
277 uint32 /* window_count */) | 270 uint32 /* window_count */) |
278 | 271 |
279 // Tells the GPU process that the browser process has finished resizing the | 272 // Tells the GPU process that the browser process has finished resizing the |
280 // view. | 273 // view. |
281 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) | 274 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) |
282 | 275 |
283 // Tells the GPU process if it's worth suggesting release of the front surface. | |
284 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected, | |
285 bool /* is_protected */, | |
286 uint32 /* protection_state_id */) | |
287 | |
288 // Tells the GPU process that the browser process has handled the swap | 276 // Tells the GPU process that the browser process has handled the swap |
289 // buffers or post sub-buffer request. A non-zero sync point means | 277 // buffers or post sub-buffer request. A non-zero sync point means |
290 // that we should wait for the sync point. | 278 // that we should wait for the sync point. The surface_handle identifies |
| 279 // that buffer that has finished presented, i.e. the buffer being returned. |
291 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented, | 280 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented, |
292 bool /* presented */, | 281 uint64 /* surface_handle */, |
293 uint32 /* sync_point */) | 282 uint32 /* sync_point */) |
294 | 283 |
295 // Tells the GPU process to remove all contexts. | 284 // Tells the GPU process to remove all contexts. |
296 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) | 285 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) |
297 | 286 |
298 // Tells the GPU process to crash. | 287 // Tells the GPU process to crash. |
299 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) | 288 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) |
300 | 289 |
301 // Tells the GPU process to hang. | 290 // Tells the GPU process to hang. |
302 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) | 291 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 | 690 |
702 // Confirm decoder has been flushed. | 691 // Confirm decoder has been flushed. |
703 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 692 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
704 | 693 |
705 // Confirm decoder has been reset. | 694 // Confirm decoder has been reset. |
706 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 695 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
707 | 696 |
708 // Video decoder has encountered an error. | 697 // Video decoder has encountered an error. |
709 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 698 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
710 uint32) /* Error ID */ | 699 uint32) /* Error ID */ |
OLD | NEW |