| Index: gpu/command_buffer/service/stream_texture_manager_in_process_android.cc
|
| diff --git a/gpu/command_buffer/service/stream_texture_manager_in_process_android.cc b/gpu/command_buffer/service/stream_texture_manager_in_process_android.cc
|
| index 7cf814a0cc0287660ef418b0cf28aaf6d915f7e4..d0d029d17d1b0c024df57138580b2b0867a67fea 100644
|
| --- a/gpu/command_buffer/service/stream_texture_manager_in_process_android.cc
|
| +++ b/gpu/command_buffer/service/stream_texture_manager_in_process_android.cc
|
| @@ -37,8 +37,10 @@ class GLImageImpl : public gl::GLImage {
|
| bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
|
| int z_order,
|
| gfx::OverlayTransform transform,
|
| + gfx::BufferFormat storage_format,
|
| const gfx::Rect& bounds_rect,
|
| - const gfx::RectF& crop_rect) override;
|
| + const gfx::RectF& crop_rect,
|
| + bool handle_scaling) override;
|
| void OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd,
|
| uint64_t process_tracing_id,
|
| const std::string& dump_name) override;
|
| @@ -125,8 +127,10 @@ bool GLImageImpl::CopyTexSubImage(unsigned target,
|
| bool GLImageImpl::ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
|
| int z_order,
|
| gfx::OverlayTransform transform,
|
| + gfx::BufferFormat storage_format,
|
| const gfx::Rect& bounds_rect,
|
| - const gfx::RectF& crop_rect) {
|
| + const gfx::RectF& crop_rect,
|
| + bool handle_scaling) {
|
| NOTREACHED();
|
| return false;
|
| }
|
|
|