| Index: ui/ozone/public/surface_factory_ozone.cc
|
| diff --git a/ui/ozone/public/surface_factory_ozone.cc b/ui/ozone/public/surface_factory_ozone.cc
|
| index 9d33be43524b2952e1a518660a89edd7485f9985..c1eca1e7304c6ae5e5987d769b03039d854966bf 100644
|
| --- a/ui/ozone/public/surface_factory_ozone.cc
|
| +++ b/ui/ozone/public/surface_factory_ozone.cc
|
| @@ -56,20 +56,13 @@ ui::OverlayCandidatesOzone* SurfaceFactoryOzone::GetOverlayCandidates(
|
| return NULL;
|
| }
|
|
|
| -void SurfaceFactoryOzone::ScheduleOverlayPlane(
|
| - gfx::AcceleratedWidget w,
|
| - int plane_z_order,
|
| - gfx::OverlayTransform plane_transform,
|
| - ui::NativeBufferOzone buffer,
|
| - const gfx::Rect& display_bounds,
|
| - gfx::RectF crop_rect) {
|
| - NOTREACHED();
|
| -}
|
| -
|
| -ui::NativeBufferOzone SurfaceFactoryOzone::CreateNativeBuffer(
|
| +scoped_refptr<ui::NativePixmap> SurfaceFactoryOzone::CreateNativePixmap(
|
| gfx::Size size,
|
| BufferFormat format) {
|
| - return 0;
|
| + return NULL;
|
| }
|
|
|
| +bool SurfaceFactoryOzone::CanShowPrimaryPlaneAsOverlay() {
|
| + return false;
|
| +}
|
| } // namespace ui
|
|
|