diff options
author | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-08 17:05:31 +0000 |
---|---|---|
committer | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-08 17:05:31 +0000 |
commit | 77128dec2b067b305b9f749aa8a703af0159b350 (patch) | |
tree | f6b237cb5cee5152dfd29a88747691936100dd26 /chrome/common/gpu_messages_internal.h | |
parent | b61f4dbfaf2459e54203656e2d80588fbad1c931 (diff) | |
download | chromium_src-77128dec2b067b305b9f749aa8a703af0159b350.zip chromium_src-77128dec2b067b305b9f749aa8a703af0159b350.tar.gz chromium_src-77128dec2b067b305b9f749aa8a703af0159b350.tar.bz2 |
Deleted code associated with --enable-gpu-rendering and
--enable-video-layering flags. With the introduction of accelerated
compositing to Chromium this code is now obsolete, and it is causing
problems and bug reports when users experiment with these flags.
Tested on Linux in the following configurations:
- Compositor on, CSS 3D content
- Compositor on, HTML5 video content
- Compositor off, HTML5 video content
Also ran patch successfully through the try bots.
BUG=54932
TEST=none
Review URL: http://codereview.chromium.org/4399003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65383 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/gpu_messages_internal.h')
-rw-r--r-- | chrome/common/gpu_messages_internal.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/chrome/common/gpu_messages_internal.h b/chrome/common/gpu_messages_internal.h index 0b8e3e6..1b51c03 100644 --- a/chrome/common/gpu_messages_internal.h +++ b/chrome/common/gpu_messages_internal.h @@ -47,10 +47,6 @@ IPC_BEGIN_MESSAGES(Gpu) // asynchronously.) Results in a GpuHostMsg_SynchronizeReply. IPC_MESSAGE_CONTROL0(GpuMsg_Synchronize) - IPC_MESSAGE_CONTROL2(GpuMsg_NewRenderWidgetHostView, - GpuNativeWindowHandle, /* parent window */ - int32 /* view_id */) - // Tells the GPU process to create a context for collecting graphics card // information. IPC_MESSAGE_CONTROL0(GpuMsg_CollectGraphicsInfo) @@ -61,45 +57,6 @@ IPC_BEGIN_MESSAGES(Gpu) // Tells the GPU process to hang. IPC_MESSAGE_CONTROL0(GpuMsg_Hang) - // Creates a new backing store. - IPC_MESSAGE_ROUTED2(GpuMsg_NewBackingStore, - int32, /* backing_store_routing_id */ - gfx::Size /* size */) - - // Creates a new video layer. - IPC_MESSAGE_ROUTED2(GpuMsg_NewVideoLayer, - int32, /* video_layer_routing_id */ - gfx::Size /* size */) - - // Updates the backing store with the given bitmap. The GPU process will send - // back a GpuHostMsg_PaintToBackingStore_ACK after the paint is complete to - // let the caller know the TransportDIB can be freed or reused. - IPC_MESSAGE_ROUTED4(GpuMsg_PaintToBackingStore, - base::ProcessId, /* process */ - TransportDIB::Id, /* bitmap */ - gfx::Rect, /* bitmap_rect */ - std::vector<gfx::Rect>) /* copy_rects */ - - - IPC_MESSAGE_ROUTED4(GpuMsg_ScrollBackingStore, - int, /* dx */ - int, /* dy */ - gfx::Rect, /* clip_rect */ - gfx::Size) /* view_size */ - - // Tells the GPU process that the RenderWidgetHost has painted the window. - // Depending on the platform, the accelerated content may need to be painted - // over the top. - IPC_MESSAGE_ROUTED0(GpuMsg_WindowPainted) - - // Updates the video layer with the given YUV data. The GPU process will send - // back a GpuHostMsg_PaintToVideoLayer_ACK after the paint is complete to - // let the caller know the TransportDIB can be freed or reused. - IPC_MESSAGE_ROUTED3(GpuMsg_PaintToVideoLayer, - base::ProcessId, /* process */ - TransportDIB::Id, /* bitmap */ - gfx::Rect) /* bitmap_rect */ - IPC_END_MESSAGES(Gpu) //------------------------------------------------------------------------------ @@ -107,12 +64,6 @@ IPC_END_MESSAGES(Gpu) // These are messages from the GPU process to the browser. IPC_BEGIN_MESSAGES(GpuHost) - // Sent in response to GpuMsg_PaintToBackingStore, see that for more. - IPC_MESSAGE_ROUTED0(GpuHostMsg_PaintToBackingStore_ACK) - - // Sent in response to GpuMsg_PaintToVideoLayer, see that for more. - IPC_MESSAGE_ROUTED0(GpuHostMsg_PaintToVideoLayer_ACK) - // Response to a GpuHostMsg_EstablishChannel message. IPC_MESSAGE_CONTROL2(GpuHostMsg_ChannelEstablished, IPC::ChannelHandle, /* channel_handle */ |