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 | 10 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 | 77 |
78 SkCanvas* SurfaceFactoryOzone::GetCanvasForWidget(gfx::AcceleratedWidget w) { | 78 SkCanvas* SurfaceFactoryOzone::GetCanvasForWidget(gfx::AcceleratedWidget w) { |
79 return NULL; | 79 return NULL; |
80 } | 80 } |
81 | 81 |
82 const int32* SurfaceFactoryOzone::GetEGLSurfaceProperties( | 82 const int32* SurfaceFactoryOzone::GetEGLSurfaceProperties( |
83 const int32* desired_attributes) { | 83 const int32* desired_attributes) { |
84 return desired_attributes; | 84 return desired_attributes; |
85 } | 85 } |
86 | 86 |
| 87 void* SurfaceFactoryOzone::GetFunctionPointerFromNativeLibrary( |
| 88 base::NativeLibrary library, |
| 89 const char* name) { |
| 90 return base::GetFunctionPointerFromNativeLibrary(library, name); |
| 91 } |
| 92 |
| 93 void SurfaceFactoryOzone::SetOverlayPlane(int plane_id, |
| 94 gfx::AcceleratedWidget handle, |
| 95 const gfx::Rect& bounds) {} |
| 96 |
| 97 gfx::AcceleratedWidget SurfaceFactoryOzone::CreateNativeBuffer( |
| 98 gfx::Size size, |
| 99 unsigned internalformat) { |
| 100 return kNullAcceleratedWidget; |
| 101 } |
| 102 |
87 // static | 103 // static |
88 SurfaceFactoryOzone* SurfaceFactoryOzone::CreateTestHelper() { | 104 SurfaceFactoryOzone* SurfaceFactoryOzone::CreateTestHelper() { |
89 return new SurfaceFactoryOzoneStub; | 105 return new SurfaceFactoryOzoneStub; |
90 } | 106 } |
91 | 107 |
92 } // namespace gfx | 108 } // namespace gfx |
OLD | NEW |