OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/gfx/ozone/surface_factory_ozone.h" | 5 #include "ui/gfx/ozone/surface_factory_ozone.h" |
6 | 6 |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "ui/gfx/vsync_provider.h" | 10 #include "ui/gfx/vsync_provider.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 const int32* desired_attributes) { | 45 const int32* desired_attributes) { |
46 return desired_attributes; | 46 return desired_attributes; |
47 } | 47 } |
48 | 48 |
49 void SurfaceFactoryOzone::SetCursorImage(const SkBitmap& image) { | 49 void SurfaceFactoryOzone::SetCursorImage(const SkBitmap& image) { |
50 } | 50 } |
51 | 51 |
52 void SurfaceFactoryOzone::MoveCursorTo(const gfx::Point& location) { | 52 void SurfaceFactoryOzone::MoveCursorTo(const gfx::Point& location) { |
53 } | 53 } |
54 | 54 |
| 55 gfx::OverlayHALOzone* SurfaceFactoryOzone::GetOverlayHAL() { return NULL; } |
| 56 |
| 57 void SurfaceFactoryOzone::SetOverlayPlane(int plane_id, |
| 58 OverlayTransform plane_transform, |
| 59 gfx::AcceleratedWidget handle, |
| 60 const gfx::Rect& bounds) { |
| 61 NOTREACHED(); |
| 62 } |
| 63 |
| 64 gfx::AcceleratedWidget SurfaceFactoryOzone::CreateNativeBuffer( |
| 65 gfx::Size size, |
| 66 BufferFormat format) { |
| 67 return kNullAcceleratedWidget; |
| 68 } |
| 69 |
55 } // namespace gfx | 70 } // namespace gfx |
OLD | NEW |