| Index: chrome/browser/renderer_host/render_widget_host.h
|
| diff --git a/chrome/browser/renderer_host/render_widget_host.h b/chrome/browser/renderer_host/render_widget_host.h
|
| index 6c3fed77e826c57fb931e4ced91a766a16e89c01..26d1c2ccfa34418ba696b24a6ddf4ff2ed5894e4 100644
|
| --- a/chrome/browser/renderer_host/render_widget_host.h
|
| +++ b/chrome/browser/renderer_host/render_widget_host.h
|
| @@ -480,7 +480,9 @@ class RenderWidgetHost : public IPC::Channel::Listener,
|
| void OnMsgPaintAtSizeAck(int tag, const gfx::Size& size);
|
| void OnMsgUpdateRect(const ViewHostMsg_UpdateRect_Params& params);
|
| void OnMsgCreateVideo(const gfx::Size& size);
|
| - void OnMsgUpdateVideo(TransportDIB::Id bitmap, const gfx::Rect& bitmap_rect);
|
| + void OnMsgUpdateVideo(TransportDIB::Id dib_id,
|
| + TransportDIB::Handle dib_handle,
|
| + const gfx::Rect& bitmap_rect);
|
| void OnMsgDestroyVideo();
|
| void OnMsgInputEventAck(const IPC::Message& message);
|
| virtual void OnMsgFocus();
|
| @@ -523,7 +525,8 @@ class RenderWidgetHost : public IPC::Channel::Listener,
|
| // synchronously, and the bitmap is done being used. False means that the
|
| // backing store will paint the bitmap at a later time and that the DIB can't
|
| // be freed (it will be the backing store's job to free it later).
|
| - void PaintBackingStoreRect(TransportDIB::Id bitmap,
|
| + void PaintBackingStoreRect(TransportDIB::Id dib_id,
|
| + TransportDIB::Handle dib_handle,
|
| const gfx::Rect& bitmap_rect,
|
| const std::vector<gfx::Rect>& copy_rects,
|
| const gfx::Size& view_size,
|
| @@ -538,7 +541,8 @@ class RenderWidgetHost : public IPC::Channel::Listener,
|
| // Paints the entire given bitmap into the current video layer, if it exists.
|
| // |bitmap_rect| specifies the destination size and absolute location of the
|
| // bitmap on the backing store.
|
| - void PaintVideoLayer(TransportDIB::Id bitmap,
|
| + void PaintVideoLayer(TransportDIB::Id dib_id,
|
| + TransportDIB::Handle dib_handle,
|
| const gfx::Rect& bitmap_rect);
|
|
|
| // Called by OnMsgInputEventAck() to process a keyboard event ack message.
|
|
|