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

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

Issue 255713008: Change glimage to accept a type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_DeletedSharedBitmap, 174 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_DeletedSharedBitmap,
175 cc::SharedBitmapId) 175 cc::SharedBitmapId)
176 176
177 #if defined(USE_TCMALLOC) 177 #if defined(USE_TCMALLOC)
178 // Reply to ChildProcessMsg_GetTcmallocStats. 178 // Reply to ChildProcessMsg_GetTcmallocStats.
179 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, 179 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats,
180 std::string /* output */) 180 std::string /* output */)
181 #endif 181 #endif
182 182
183 // Asks the browser to create a gpu memory buffer. 183 // Asks the browser to create a gpu memory buffer.
184 IPC_SYNC_MESSAGE_CONTROL3_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer, 184 IPC_SYNC_MESSAGE_CONTROL4_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer,
185 uint32 /* width */, 185 uint32 /* width */,
186 uint32 /* height */, 186 uint32 /* height */,
187 uint32 /* internalformat */, 187 uint32 /* internalformat */,
188 uint32 /* usage */,
188 gfx::GpuMemoryBufferHandle) 189 gfx::GpuMemoryBufferHandle)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698