| Index: content/browser/compositor/gl_helper.h
|
| diff --git a/content/browser/compositor/gl_helper.h b/content/browser/compositor/gl_helper.h
|
| index 582c00b9c12264105aabef1fabad149f798e0640..8ebba5f04e2174d13dce2ab1a464d699d0d84806 100644
|
| --- a/content/browser/compositor/gl_helper.h
|
| +++ b/content/browser/compositor/gl_helper.h
|
| @@ -26,10 +26,6 @@ class ContextSupport;
|
| struct Mailbox;
|
| }
|
|
|
| -namespace media {
|
| -class VideoFrame;
|
| -};
|
| -
|
| class SkRegion;
|
|
|
| namespace content {
|
| @@ -369,7 +365,13 @@ class CONTENT_EXPORT ReadbackYUVInterface {
|
| // |target->visible_rect()|.
|
| virtual void ReadbackYUV(const gpu::Mailbox& mailbox,
|
| const gpu::SyncToken& sync_token,
|
| - const scoped_refptr<media::VideoFrame>& target,
|
| + const gfx::Rect& target_visible_rect,
|
| + int y_plane_row_stride_bytes,
|
| + unsigned char* y_plane_data,
|
| + int u_plane_row_stride_bytes,
|
| + unsigned char* u_plane_data,
|
| + int v_plane_row_stride_bytes,
|
| + unsigned char* v_plane_data,
|
| const gfx::Point& paste_location,
|
| const base::Callback<void(bool)>& callback) = 0;
|
| virtual GLHelper::ScalerInterface* scaler() = 0;
|
|
|