| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 IPC_STRUCT_TRAITS_BEGIN(tracked_objects::ProcessDataSnapshot) | 54 IPC_STRUCT_TRAITS_BEGIN(tracked_objects::ProcessDataSnapshot) |
| 55 IPC_STRUCT_TRAITS_MEMBER(tasks) | 55 IPC_STRUCT_TRAITS_MEMBER(tasks) |
| 56 IPC_STRUCT_TRAITS_MEMBER(descendants) | 56 IPC_STRUCT_TRAITS_MEMBER(descendants) |
| 57 IPC_STRUCT_TRAITS_MEMBER(process_id) | 57 IPC_STRUCT_TRAITS_MEMBER(process_id) |
| 58 IPC_STRUCT_TRAITS_END() | 58 IPC_STRUCT_TRAITS_END() |
| 59 | 59 |
| 60 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBufferType, | 60 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBufferType, |
| 61 gfx::GPU_MEMORY_BUFFER_TYPE_LAST) | 61 gfx::GPU_MEMORY_BUFFER_TYPE_LAST) |
| 62 | 62 |
| 63 IPC_STRUCT_TRAITS_BEGIN(gfx::GpuMemoryBufferId) | |
| 64 IPC_STRUCT_TRAITS_MEMBER(primary_id) | |
| 65 IPC_STRUCT_TRAITS_MEMBER(secondary_id) | |
| 66 IPC_STRUCT_TRAITS_END() | |
| 67 | |
| 68 IPC_STRUCT_TRAITS_BEGIN(gfx::GpuMemoryBufferHandle) | 63 IPC_STRUCT_TRAITS_BEGIN(gfx::GpuMemoryBufferHandle) |
| 64 IPC_STRUCT_TRAITS_MEMBER(id) |
| 69 IPC_STRUCT_TRAITS_MEMBER(type) | 65 IPC_STRUCT_TRAITS_MEMBER(type) |
| 70 IPC_STRUCT_TRAITS_MEMBER(handle) | 66 IPC_STRUCT_TRAITS_MEMBER(handle) |
| 71 IPC_STRUCT_TRAITS_MEMBER(global_id) | |
| 72 #if defined(OS_MACOSX) | 67 #if defined(OS_MACOSX) |
| 73 IPC_STRUCT_TRAITS_MEMBER(io_surface_id) | 68 IPC_STRUCT_TRAITS_MEMBER(io_surface_id) |
| 74 #endif | 69 #endif |
| 75 #if defined(USE_X11) | |
| 76 IPC_STRUCT_TRAITS_MEMBER(pixmap) | |
| 77 #endif | |
| 78 IPC_STRUCT_TRAITS_END() | 70 IPC_STRUCT_TRAITS_END() |
| 79 | 71 |
| 80 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBuffer::Format, | 72 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBuffer::Format, |
| 81 gfx::GpuMemoryBuffer::FORMAT_LAST) | 73 gfx::GpuMemoryBuffer::FORMAT_LAST) |
| 82 | 74 |
| 83 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBuffer::Usage, | 75 IPC_ENUM_TRAITS_MAX_VALUE(gfx::GpuMemoryBuffer::Usage, |
| 84 gfx::GpuMemoryBuffer::USAGE_LAST) | 76 gfx::GpuMemoryBuffer::USAGE_LAST) |
| 85 | 77 |
| 86 #undef IPC_MESSAGE_EXPORT | 78 #undef IPC_MESSAGE_EXPORT |
| 87 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 79 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer, | 193 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer, |
| 202 gfx::GpuMemoryBufferType, | 194 gfx::GpuMemoryBufferType, |
| 203 gfx::GpuMemoryBufferId) | 195 gfx::GpuMemoryBufferId) |
| 204 | 196 |
| 205 // Asks the browser to create a block of discardable shared memory for the | 197 // Asks the browser to create a block of discardable shared memory for the |
| 206 // child process. | 198 // child process. |
| 207 IPC_SYNC_MESSAGE_CONTROL1_1( | 199 IPC_SYNC_MESSAGE_CONTROL1_1( |
| 208 ChildProcessHostMsg_SyncAllocateLockedDiscardableSharedMemory, | 200 ChildProcessHostMsg_SyncAllocateLockedDiscardableSharedMemory, |
| 209 uint32 /* size */, | 201 uint32 /* size */, |
| 210 base::SharedMemoryHandle) | 202 base::SharedMemoryHandle) |
| OLD | NEW |