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/ozone/public/surface_factory_ozone.h" | 5 #include "ui/ozone/public/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/ozone/public/native_pixmap.h" | 10 #include "ui/ozone/public/native_pixmap.h" |
(...skipping 23 matching lines...) Expand all Loading... |
34 intptr_t SurfaceFactoryOzone::GetNativeDisplay() { | 34 intptr_t SurfaceFactoryOzone::GetNativeDisplay() { |
35 return 0; | 35 return 0; |
36 } | 36 } |
37 | 37 |
38 scoped_ptr<SurfaceOzoneEGL> SurfaceFactoryOzone::CreateEGLSurfaceForWidget( | 38 scoped_ptr<SurfaceOzoneEGL> SurfaceFactoryOzone::CreateEGLSurfaceForWidget( |
39 gfx::AcceleratedWidget widget) { | 39 gfx::AcceleratedWidget widget) { |
40 NOTIMPLEMENTED(); | 40 NOTIMPLEMENTED(); |
41 return scoped_ptr<SurfaceOzoneEGL>(); | 41 return scoped_ptr<SurfaceOzoneEGL>(); |
42 } | 42 } |
43 | 43 |
| 44 scoped_ptr<SurfaceOzoneEGL> |
| 45 SurfaceFactoryOzone::CreateSurfacelessEGLSurfaceForWidget( |
| 46 gfx::AcceleratedWidget widget) { |
| 47 NOTIMPLEMENTED(); |
| 48 return scoped_ptr<SurfaceOzoneCanvas>(); |
| 49 } |
| 50 |
44 scoped_ptr<SurfaceOzoneCanvas> SurfaceFactoryOzone::CreateCanvasForWidget( | 51 scoped_ptr<SurfaceOzoneCanvas> SurfaceFactoryOzone::CreateCanvasForWidget( |
45 gfx::AcceleratedWidget widget) { | 52 gfx::AcceleratedWidget widget) { |
46 NOTIMPLEMENTED(); | 53 NOTIMPLEMENTED(); |
47 return scoped_ptr<SurfaceOzoneCanvas>(); | 54 return scoped_ptr<SurfaceOzoneCanvas>(); |
48 } | 55 } |
49 | 56 |
50 const int32* SurfaceFactoryOzone::GetEGLSurfaceProperties( | 57 const int32* SurfaceFactoryOzone::GetEGLSurfaceProperties( |
51 const int32* desired_attributes) { | 58 const int32* desired_attributes) { |
52 return desired_attributes; | 59 return desired_attributes; |
53 } | 60 } |
(...skipping 16 matching lines...) Expand all Loading... |
70 scoped_refptr<NativePixmap> buffer, | 77 scoped_refptr<NativePixmap> buffer, |
71 const gfx::Rect& display_bounds, | 78 const gfx::Rect& display_bounds, |
72 const gfx::RectF& crop_rect) { | 79 const gfx::RectF& crop_rect) { |
73 return false; | 80 return false; |
74 } | 81 } |
75 | 82 |
76 bool SurfaceFactoryOzone::CanShowPrimaryPlaneAsOverlay() { | 83 bool SurfaceFactoryOzone::CanShowPrimaryPlaneAsOverlay() { |
77 return false; | 84 return false; |
78 } | 85 } |
79 } // namespace ui | 86 } // namespace ui |
OLD | NEW |