| Index: ui/gl/gl_surface.cc
|
| diff --git a/ui/gl/gl_surface.cc b/ui/gl/gl_surface.cc
|
| index 31b5ab9576242b1beca5b0f17fee5f1724cd943f..92b2b45ce234cf700007f3276b1d12c54556c735 100644
|
| --- a/ui/gl/gl_surface.cc
|
| +++ b/ui/gl/gl_surface.cc
|
| @@ -226,15 +226,6 @@ VSyncProvider* GLSurface::GetVSyncProvider() {
|
| return NULL;
|
| }
|
|
|
| -bool GLSurface::ScheduleOverlayPlane(int z_order,
|
| - OverlayTransform transform,
|
| - GLImage* image,
|
| - const Rect& bounds_rect,
|
| - const RectF& crop_rect) {
|
| - NOTIMPLEMENTED();
|
| - return false;
|
| -}
|
| -
|
| GLSurface* GLSurface::GetCurrent() {
|
| return current_surface_.Pointer()->Get();
|
| }
|
| @@ -343,15 +334,6 @@ VSyncProvider* GLSurfaceAdapter::GetVSyncProvider() {
|
| return surface_->GetVSyncProvider();
|
| }
|
|
|
| -bool GLSurfaceAdapter::ScheduleOverlayPlane(int z_order,
|
| - OverlayTransform transform,
|
| - GLImage* image,
|
| - const Rect& bounds_rect,
|
| - const RectF& crop_rect) {
|
| - return surface_->ScheduleOverlayPlane(
|
| - z_order, transform, image, bounds_rect, crop_rect);
|
| -}
|
| -
|
| GLSurfaceAdapter::~GLSurfaceAdapter() {}
|
|
|
| } // namespace gfx
|
|
|