| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |