Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: content/common/child_process_messages.h

Issue 2459733002: Move discardable memory to //components from //content (Closed)
Patch Set: Fix build error Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/DEPS ('k') | content/common/discardable_shared_memory_heap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "content/common/host_discardable_shared_memory_manager.h"
21 #include "gpu/command_buffer/common/sync_token.h" 21 #include "gpu/command_buffer/common/sync_token.h"
22 #include "gpu/ipc/common/gpu_param_traits_macros.h" 22 #include "gpu/ipc/common/gpu_param_traits_macros.h"
23 #include "ipc/ipc_channel_handle.h" 23 #include "ipc/ipc_channel_handle.h"
24 #include "ipc/ipc_message_macros.h" 24 #include "ipc/ipc_message_macros.h"
25 #include "ipc/ipc_platform_file.h" 25 #include "ipc/ipc_platform_file.h"
26 #include "ui/gfx/gpu_memory_buffer.h" 26 #include "ui/gfx/gpu_memory_buffer.h"
27 #include "ui/gfx/ipc/gfx_param_traits.h" 27 #include "ui/gfx/ipc/gfx_param_traits.h"
28 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" 28 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h"
29 29
30 #if defined(OS_LINUX) 30 #if defined(OS_LINUX)
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 // Informs the browser that the child deleted a gpu memory buffer. 209 // Informs the browser that the child deleted a gpu memory buffer.
210 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer, 210 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer,
211 gfx::GpuMemoryBufferId, 211 gfx::GpuMemoryBufferId,
212 gpu::SyncToken /* sync_token */) 212 gpu::SyncToken /* sync_token */)
213 213
214 // Asks the browser to create a block of discardable shared memory for the 214 // Asks the browser to create a block of discardable shared memory for the
215 // child process. 215 // child process.
216 IPC_SYNC_MESSAGE_CONTROL2_1( 216 IPC_SYNC_MESSAGE_CONTROL2_1(
217 ChildProcessHostMsg_SyncAllocateLockedDiscardableSharedMemory, 217 ChildProcessHostMsg_SyncAllocateLockedDiscardableSharedMemory,
218 uint32_t /* size */, 218 uint32_t /* size */,
219 content::DiscardableSharedMemoryId, 219 discardable_memory::DiscardableSharedMemoryId,
220 base::SharedMemoryHandle) 220 base::SharedMemoryHandle)
221 221
222 // Informs the browser that the child deleted a block of discardable shared 222 // Informs the browser that the child deleted a block of discardable shared
223 // memory. 223 // memory.
224 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_DeletedDiscardableSharedMemory, 224 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_DeletedDiscardableSharedMemory,
225 content::DiscardableSharedMemoryId) 225 discardable_memory::DiscardableSharedMemoryId)
226 226
227 #if defined(OS_LINUX) 227 #if defined(OS_LINUX)
228 // Asks the browser to change the priority of thread. 228 // Asks the browser to change the priority of thread.
229 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority, 229 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority,
230 base::PlatformThreadId, 230 base::PlatformThreadId,
231 base::ThreadPriority) 231 base::ThreadPriority)
232 #endif 232 #endif
OLDNEW
« no previous file with comments | « content/common/DEPS ('k') | content/common/discardable_shared_memory_heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698