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 // Common IPC messages used for child processes. | 5 // Common IPC messages used for child processes. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 | 58 |
59 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBufferType, | 59 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBufferType, |
60 gfx::GPU_MEMORY_BUFFER_TYPE_LAST) | 60 gfx::GPU_MEMORY_BUFFER_TYPE_LAST) |
61 | 61 |
62 IPC_STRUCT_TRAITS_BEGIN(gfx::GpuMemoryBufferHandle) | 62 IPC_STRUCT_TRAITS_BEGIN(gfx::GpuMemoryBufferHandle) |
63 IPC_STRUCT_TRAITS_MEMBER(type) | 63 IPC_STRUCT_TRAITS_MEMBER(type) |
64 IPC_STRUCT_TRAITS_MEMBER(handle) | 64 IPC_STRUCT_TRAITS_MEMBER(handle) |
65 #if defined(OS_MACOSX) | 65 #if defined(OS_MACOSX) |
66 IPC_STRUCT_TRAITS_MEMBER(io_surface_id) | 66 IPC_STRUCT_TRAITS_MEMBER(io_surface_id) |
67 #endif | 67 #endif |
| 68 #if defined(OS_ANDROID) |
| 69 IPC_STRUCT_TRAITS_MEMBER(surface_texture_id) |
| 70 #endif |
68 IPC_STRUCT_TRAITS_END() | 71 IPC_STRUCT_TRAITS_END() |
69 | 72 |
70 #undef IPC_MESSAGE_EXPORT | 73 #undef IPC_MESSAGE_EXPORT |
71 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 74 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
72 | 75 |
73 #define IPC_MESSAGE_START ChildProcessMsgStart | 76 #define IPC_MESSAGE_START ChildProcessMsgStart |
74 | 77 |
75 // Messages sent from the browser to the child process. | 78 // Messages sent from the browser to the child process. |
76 | 79 |
77 // Sent in response to ChildProcessHostMsg_ShutdownRequest to tell the child | 80 // Sent in response to ChildProcessHostMsg_ShutdownRequest to tell the child |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, | 154 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, |
152 std::string /* output */) | 155 std::string /* output */) |
153 #endif | 156 #endif |
154 | 157 |
155 // Asks the browser to create a gpu memory buffer. | 158 // Asks the browser to create a gpu memory buffer. |
156 IPC_SYNC_MESSAGE_CONTROL3_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer, | 159 IPC_SYNC_MESSAGE_CONTROL3_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer, |
157 uint32 /* width */, | 160 uint32 /* width */, |
158 uint32 /* height */, | 161 uint32 /* height */, |
159 uint32 /* internalformat */, | 162 uint32 /* internalformat */, |
160 gfx::GpuMemoryBufferHandle) | 163 gfx::GpuMemoryBufferHandle) |
OLD | NEW |