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

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

Issue 186123006: zero copy - NOT FOR REVIEW Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: re-upload Created 6 years, 9 months 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
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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 IPC_STRUCT_TRAITS_MEMBER(foobar_id)
68 IPC_STRUCT_TRAITS_END() 69 IPC_STRUCT_TRAITS_END()
69 70
70 #undef IPC_MESSAGE_EXPORT 71 #undef IPC_MESSAGE_EXPORT
71 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 72 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
72 73
73 #define IPC_MESSAGE_START ChildProcessMsgStart 74 #define IPC_MESSAGE_START ChildProcessMsgStart
74 75
75 // Messages sent from the browser to the child process. 76 // Messages sent from the browser to the child process.
76 77
77 // Sent in response to ChildProcessHostMsg_ShutdownRequest to tell the child 78 // Sent in response to ChildProcessHostMsg_ShutdownRequest to tell the child
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, 152 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats,
152 std::string /* output */) 153 std::string /* output */)
153 #endif 154 #endif
154 155
155 // Asks the browser to create a gpu memory buffer. 156 // Asks the browser to create a gpu memory buffer.
156 IPC_SYNC_MESSAGE_CONTROL3_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer, 157 IPC_SYNC_MESSAGE_CONTROL3_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer,
157 uint32 /* width */, 158 uint32 /* width */,
158 uint32 /* height */, 159 uint32 /* height */,
159 uint32 /* internalformat */, 160 uint32 /* internalformat */,
160 gfx::GpuMemoryBufferHandle) 161 gfx::GpuMemoryBufferHandle)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698