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

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: minus ui-map-image and ui-impl-side setting, plus tiled mode 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::GpuMemoryBufferHandle) 63 IPC_STRUCT_TRAITS_BEGIN(gfx::GpuMemoryBufferHandle)
64 IPC_STRUCT_TRAITS_MEMBER(type) 64 IPC_STRUCT_TRAITS_MEMBER(type)
65 IPC_STRUCT_TRAITS_MEMBER(handle) 65 IPC_STRUCT_TRAITS_MEMBER(handle)
66 #if defined(OS_MACOSX) 66 #if defined(OS_MACOSX)
67 IPC_STRUCT_TRAITS_MEMBER(io_surface_id) 67 IPC_STRUCT_TRAITS_MEMBER(io_surface_id)
68 #endif 68 #endif
69 IPC_STRUCT_TRAITS_MEMBER(foobar_id)
69 IPC_STRUCT_TRAITS_END() 70 IPC_STRUCT_TRAITS_END()
70 71
71 #undef IPC_MESSAGE_EXPORT 72 #undef IPC_MESSAGE_EXPORT
72 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 73 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
73 74
74 #define IPC_MESSAGE_START ChildProcessMsgStart 75 #define IPC_MESSAGE_START ChildProcessMsgStart
75 76
76 // Messages sent from the browser to the child process. 77 // Messages sent from the browser to the child process.
77 78
78 // Sent in response to ChildProcessHostMsg_ShutdownRequest to tell the child 79 // Sent in response to ChildProcessHostMsg_ShutdownRequest to tell the child
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, 170 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats,
170 std::string /* output */) 171 std::string /* output */)
171 #endif 172 #endif
172 173
173 // Asks the browser to create a gpu memory buffer. 174 // Asks the browser to create a gpu memory buffer.
174 IPC_SYNC_MESSAGE_CONTROL3_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer, 175 IPC_SYNC_MESSAGE_CONTROL3_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer,
175 uint32 /* width */, 176 uint32 /* width */,
176 uint32 /* height */, 177 uint32 /* height */,
177 uint32 /* internalformat */, 178 uint32 /* internalformat */,
178 gfx::GpuMemoryBufferHandle) 179 gfx::GpuMemoryBufferHandle)
OLDNEW
« no previous file with comments | « content/browser/gpu/browser_gpu_channel_host_factory.cc ('k') | content/common/gpu/client/gpu_channel_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698