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

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

Issue 10696221: Aura: Less image transport IPCs and less code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 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 | 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 // 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
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
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 */
OLDNEW
« no previous file with comments | « content/browser/renderer_host/test_render_view_host.h ('k') | content/common/gpu/image_transport_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698