| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 GPUCreateCommandBufferConfig /* init_params */) | 215 GPUCreateCommandBufferConfig /* init_params */) |
| 216 | 216 |
| 217 // Tells the GPU process to create a context for collecting graphics card | 217 // Tells the GPU process to create a context for collecting graphics card |
| 218 // information. | 218 // information. |
| 219 IPC_MESSAGE_CONTROL0(GpuMsg_CollectGraphicsInfo) | 219 IPC_MESSAGE_CONTROL0(GpuMsg_CollectGraphicsInfo) |
| 220 | 220 |
| 221 // Tells the GPU process that the browser process has finished resizing the | 221 // Tells the GPU process that the browser process has finished resizing the |
| 222 // view. | 222 // view. |
| 223 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) | 223 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) |
| 224 | 224 |
| 225 // Tells the GPU process that it's safe to start rendering to the surface. | |
| 226 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_NewACK, | |
| 227 uint64 /* surface_handle */, | |
| 228 TransportDIB::Handle /* shared memory buffer */) | |
| 229 | |
| 230 // Tells the GPU process that the browser process has handled the swap | 225 // Tells the GPU process that the browser process has handled the swap |
| 231 // buffers or post sub-buffer request. A non-zero sync point means | 226 // buffers or post sub-buffer request. A non-zero sync point means |
| 232 // that we should wait for the sync point. | 227 // that we should wait for the sync point. |
| 233 IPC_MESSAGE_ROUTED1(AcceleratedSurfaceMsg_BufferPresented, | 228 IPC_MESSAGE_ROUTED1(AcceleratedSurfaceMsg_BufferPresented, |
| 234 uint32 /* sync_point */) | 229 uint32 /* sync_point */) |
| 235 | 230 |
| 236 // Tells the GPU process to remove all contexts. | 231 // Tells the GPU process to remove all contexts. |
| 237 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) | 232 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) |
| 238 | 233 |
| 239 // Tells the GPU process to crash. | 234 // Tells the GPU process to crash. |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 | 580 |
| 586 // Confirm decoder has been flushed. | 581 // Confirm decoder has been flushed. |
| 587 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 582 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
| 588 | 583 |
| 589 // Confirm decoder has been reset. | 584 // Confirm decoder has been reset. |
| 590 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) | 585 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) |
| 591 | 586 |
| 592 // Video decoder has encountered an error. | 587 // Video decoder has encountered an error. |
| 593 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 588 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
| 594 uint32) /* Error ID */ | 589 uint32) /* Error ID */ |
| OLD | NEW |