Chromium Code Reviews| 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) | |
|
piman
2012/11/30 03:54:32
note: considering the GPU process as untrusted, we
no sievers
2012/12/01 00:58:38
Done in gpu_process_host_ui_shim.cc
| |
| 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) |
|
jonathan.backer
2012/11/20 21:21:11
If we're not going to use the |surface_id| on USE_
no sievers
2012/12/01 00:58:38
Actually, we don't really use the identifier eithe
| |
| 89 IPC_STRUCT_MEMBER(uint64, identifier) | 87 IPC_STRUCT_MEMBER(uint64, identifier) |
| 90 IPC_STRUCT_MEMBER(int32, route_id) | 88 IPC_STRUCT_MEMBER(int32, route_id) |
| 91 #if defined(OS_MACOSX) | 89 #if defined(OS_MACOSX) |
| 92 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) | 90 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) |
| 93 #endif | 91 #endif |
| 94 IPC_STRUCT_END() | 92 IPC_STRUCT_END() |
| 95 | 93 |
| 96 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage) | 94 IPC_STRUCT_BEGIN(GPUCommandBufferConsoleMessage) |
| 97 IPC_STRUCT_MEMBER(int32, id) | 95 IPC_STRUCT_MEMBER(int32, id) |
| 98 IPC_STRUCT_MEMBER(std::string, message) | 96 IPC_STRUCT_MEMBER(std::string, message) |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 190 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have) | 188 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have) |
| 191 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) | 189 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) |
| 192 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested) | 190 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested) |
| 193 IPC_STRUCT_TRAITS_END() | 191 IPC_STRUCT_TRAITS_END() |
| 194 | 192 |
| 195 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle) | 193 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle) |
| 196 IPC_STRUCT_TRAITS_MEMBER(handle) | 194 IPC_STRUCT_TRAITS_MEMBER(handle) |
| 197 IPC_STRUCT_TRAITS_MEMBER(transport) | 195 IPC_STRUCT_TRAITS_MEMBER(transport) |
| 198 IPC_STRUCT_TRAITS_MEMBER(parent_gpu_process_id) | 196 IPC_STRUCT_TRAITS_MEMBER(parent_gpu_process_id) |
| 199 IPC_STRUCT_TRAITS_MEMBER(parent_client_id) | 197 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() | 198 IPC_STRUCT_TRAITS_END() |
| 205 | 199 |
| 206 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) | 200 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) |
| 207 IPC_ENUM_TRAITS(gfx::GpuPreference) | 201 IPC_ENUM_TRAITS(gfx::GpuPreference) |
| 208 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) | 202 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) |
| 209 | 203 |
| 210 IPC_ENUM_TRAITS(media::VideoCodecProfile) | 204 IPC_ENUM_TRAITS(media::VideoCodecProfile) |
| 211 | 205 |
| 212 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats) | 206 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats) |
| 213 IPC_STRUCT_TRAITS_MEMBER(global_texture_upload_count) | 207 IPC_STRUCT_TRAITS_MEMBER(global_texture_upload_count) |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 273 | 267 |
| 274 // Tells the GPU process' memory manager how many visible windows there are, so | 268 // Tells the GPU process' memory manager how many visible windows there are, so |
| 275 // it can partition memory amongst them. | 269 // it can partition memory amongst them. |
| 276 IPC_MESSAGE_CONTROL1(GpuMsg_SetVideoMemoryWindowCount, | 270 IPC_MESSAGE_CONTROL1(GpuMsg_SetVideoMemoryWindowCount, |
| 277 uint32 /* window_count */) | 271 uint32 /* window_count */) |
| 278 | 272 |
| 279 // Tells the GPU process that the browser process has finished resizing the | 273 // Tells the GPU process that the browser process has finished resizing the |
| 280 // view. | 274 // view. |
| 281 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) | 275 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) |
| 282 | 276 |
| 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 | 277 // 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 | 278 // buffers or post sub-buffer request. A non-zero sync point means |
| 290 // that we should wait for the sync point. | 279 // that we should wait for the sync point. The surface_handle identifies |
| 280 // that buffer that has finished presented, i.e. the buffer being returned. | |
| 291 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented, | 281 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented, |
| 292 bool /* presented */, | 282 uint64 /* surface_handle */, |
| 293 uint32 /* sync_point */) | 283 uint32 /* sync_point */) |
| 294 | 284 |
| 295 // Tells the GPU process to remove all contexts. | 285 // Tells the GPU process to remove all contexts. |
| 296 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) | 286 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) |
| 297 | 287 |
| 298 // Tells the GPU process to crash. | 288 // Tells the GPU process to crash. |
| 299 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) | 289 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) |
| 300 | 290 |
| 301 // Tells the GPU process to hang. | 291 // Tells the GPU process to hang. |
| 302 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) | 292 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 687 | 677 |
| 688 // Confirm decoder has been flushed. | 678 // Confirm decoder has been flushed. |
| 689 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 679 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
| 690 | 680 |
| 691 // Confirm decoder has been reset. | 681 // Confirm decoder has been reset. |
| 692 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 682 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
| 693 | 683 |
| 694 // Video decoder has encountered an error. | 684 // Video decoder has encountered an error. |
| 695 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 685 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
| 696 uint32) /* Error ID */ | 686 uint32) /* Error ID */ |
| OLD | NEW |