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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/memory/shared_memory.h" | 13 #include "base/memory/shared_memory.h" |
14 #include "base/tracked_objects.h" | 14 #include "base/tracked_objects.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
17 #include "cc/resources/shared_bitmap_manager.h" | 17 #include "cc/resources/shared_bitmap_manager.h" |
| 18 #include "components/discardable_memory/common/discardable_shared_memory_id.h" |
18 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
19 #include "content/common/content_param_traits_macros.h" | 20 #include "content/common/content_param_traits_macros.h" |
20 #include "gpu/command_buffer/common/sync_token.h" | 21 #include "gpu/command_buffer/common/sync_token.h" |
21 #include "gpu/ipc/common/gpu_param_traits_macros.h" | 22 #include "gpu/ipc/common/gpu_param_traits_macros.h" |
22 #include "ipc/ipc_channel_handle.h" | 23 #include "ipc/ipc_channel_handle.h" |
23 #include "ipc/ipc_message_macros.h" | 24 #include "ipc/ipc_message_macros.h" |
24 #include "ipc/ipc_platform_file.h" | 25 #include "ipc/ipc_platform_file.h" |
25 #include "ui/gfx/gpu_memory_buffer.h" | 26 #include "ui/gfx/gpu_memory_buffer.h" |
26 #include "ui/gfx/ipc/gfx_param_traits.h" | 27 #include "ui/gfx/ipc/gfx_param_traits.h" |
27 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" | 28 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 uint32_t /* height */, | 198 uint32_t /* height */, |
198 gfx::BufferFormat, | 199 gfx::BufferFormat, |
199 gfx::BufferUsage, | 200 gfx::BufferUsage, |
200 gfx::GpuMemoryBufferHandle) | 201 gfx::GpuMemoryBufferHandle) |
201 | 202 |
202 // Informs the browser that the child deleted a gpu memory buffer. | 203 // Informs the browser that the child deleted a gpu memory buffer. |
203 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer, | 204 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer, |
204 gfx::GpuMemoryBufferId, | 205 gfx::GpuMemoryBufferId, |
205 gpu::SyncToken /* sync_token */) | 206 gpu::SyncToken /* sync_token */) |
206 | 207 |
| 208 // Asks the browser to create a block of discardable shared memory for the |
| 209 // child process. |
| 210 IPC_SYNC_MESSAGE_CONTROL2_1( |
| 211 ChildProcessHostMsg_SyncAllocateLockedDiscardableSharedMemory, |
| 212 uint32_t /* size */, |
| 213 discardable_memory::DiscardableSharedMemoryId, |
| 214 base::SharedMemoryHandle) |
| 215 |
| 216 // Informs the browser that the child deleted a block of discardable shared |
| 217 // memory. |
| 218 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_DeletedDiscardableSharedMemory, |
| 219 discardable_memory::DiscardableSharedMemoryId) |
| 220 |
207 #if defined(OS_LINUX) | 221 #if defined(OS_LINUX) |
208 // Asks the browser to change the priority of thread. | 222 // Asks the browser to change the priority of thread. |
209 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority, | 223 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority, |
210 base::PlatformThreadId, | 224 base::PlatformThreadId, |
211 base::ThreadPriority) | 225 base::ThreadPriority) |
212 #endif | 226 #endif |
OLD | NEW |