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 // Multiply-included message file, hence no include guard here, but see below | 5 // Multiply-included message file, hence no include guard here, but see below |
6 // for a much smaller-than-usual include guard section. | 6 // for a much smaller-than-usual include guard section. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
226 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) | 226 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) |
227 | 227 |
228 // Tells the GPU process if it's worth suggesting release of the front surface. | 228 // Tells the GPU process if it's worth suggesting release of the front surface. |
229 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected, | 229 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected, |
230 bool /* is_protected */, | 230 bool /* is_protected */, |
231 uint32 /* protection_state_id */) | 231 uint32 /* protection_state_id */) |
232 | 232 |
233 // Tells the GPU process that the browser process has handled the swap | 233 // Tells the GPU process that the browser process has handled the swap |
234 // buffers or post sub-buffer request. A non-zero sync point means | 234 // buffers or post sub-buffer request. A non-zero sync point means |
235 // that we should wait for the sync point. | 235 // that we should wait for the sync point. |
236 // | |
237 // |#if defined(USE_AURA)|, a zero sync point means the new buffer | |
238 // will not be presented and can be reused. | |
piman
2012/07/31 23:42:17
Could we make this explicit instead? Linking both
jonathan.backer
2012/08/01 17:22:43
Done.
| |
236 IPC_MESSAGE_ROUTED1(AcceleratedSurfaceMsg_BufferPresented, | 239 IPC_MESSAGE_ROUTED1(AcceleratedSurfaceMsg_BufferPresented, |
237 uint32 /* sync_point */) | 240 uint32 /* sync_point */) |
238 | 241 |
239 // Tells the GPU process to remove all contexts. | 242 // Tells the GPU process to remove all contexts. |
240 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) | 243 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) |
241 | 244 |
242 // Tells the GPU process to crash. | 245 // Tells the GPU process to crash. |
243 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) | 246 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) |
244 | 247 |
245 // Tells the GPU process to hang. | 248 // Tells the GPU process to hang. |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
588 | 591 |
589 // Confirm decoder has been flushed. | 592 // Confirm decoder has been flushed. |
590 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 593 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
591 | 594 |
592 // Confirm decoder has been reset. | 595 // Confirm decoder has been reset. |
593 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 596 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
594 | 597 |
595 // Video decoder has encountered an error. | 598 // Video decoder has encountered an error. |
596 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 599 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
597 uint32) /* Error ID */ | 600 uint32) /* Error ID */ |
OLD | NEW |