summaryrefslogtreecommitdiffstats
path: root/chrome/browser/renderer_host/video_layer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/renderer_host/video_layer.h')
-rw-r--r--chrome/browser/renderer_host/video_layer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/renderer_host/video_layer.h b/chrome/browser/renderer_host/video_layer.h
index 0d7d4f8..4bcc245 100644
--- a/chrome/browser/renderer_host/video_layer.h
+++ b/chrome/browser/renderer_host/video_layer.h
@@ -26,12 +26,13 @@ class VideoLayer {
RenderWidgetHost* render_widget_host() const { return render_widget_host_; }
const gfx::Size& size() { return size_; }
- // Copy the incoming bitmap into this video layer. |bitmap| contains YUV
+ // Copy the incoming bitmap into this video layer. The given DIB contains YUV
// pixel data in YV12 format and must be the same dimensions as this video
// layer. |bitmap_rect| specifies the absolute position and destination size
// of the bitmap on the backing store.
virtual void CopyTransportDIB(RenderProcessHost* process,
- TransportDIB::Id bitmap,
+ TransportDIB::Id dib_id,
+ TransportDIB::Handle dib_handle,
const gfx::Rect& bitmap_rect) = 0;
protected: