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

Side by Side Diff: gpu/ipc/common/gpu_messages.h

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 years, 5 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
« no previous file with comments | « gpu/ipc/common/gpu_message_generator.h ('k') | net/BUILD.gn » ('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 #ifndef GPU_IPC_COMMON_GPU_MESSAGES_H_
6 #define GPU_IPC_COMMON_GPU_MESSAGES_H_
7
5 // Multiply-included message file, hence no include guard here, but see below 8 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 9 // for a much smaller-than-usual include guard section.
7 10
8 #include <stdint.h> 11 #include <stdint.h>
9 12
10 #include <string> 13 #include <string>
11 #include <vector> 14 #include <vector>
12 15
13 #include "base/memory/shared_memory.h" 16 #include "base/memory/shared_memory.h"
14 #include "base/unguessable_token.h" 17 #include "base/unguessable_token.h"
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_DestroyImage, int32_t /* id */) 243 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_DestroyImage, int32_t /* id */)
241 244
242 // Attaches an external image stream to the client texture. 245 // Attaches an external image stream to the client texture.
243 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_CreateStreamTexture, 246 IPC_SYNC_MESSAGE_ROUTED2_1(GpuCommandBufferMsg_CreateStreamTexture,
244 uint32_t, /* client_texture_id */ 247 uint32_t, /* client_texture_id */
245 int32_t, /* stream_id */ 248 int32_t, /* stream_id */
246 bool /* succeeded */) 249 bool /* succeeded */)
247 250
248 // Start or stop VSync sygnal production on GPU side (Windows only). 251 // Start or stop VSync sygnal production on GPU side (Windows only).
249 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetNeedsVSync, bool /* needs_vsync */) 252 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetNeedsVSync, bool /* needs_vsync */)
253
254 #endif // GPU_IPC_COMMON_GPU_MESSAGES_H_
OLDNEW
« no previous file with comments | « gpu/ipc/common/gpu_message_generator.h ('k') | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698