Index: ui/gfx/ozone/surface_factory_ozone.cc |
diff --git a/ui/gfx/ozone/surface_factory_ozone.cc b/ui/gfx/ozone/surface_factory_ozone.cc |
index ea8e2f1a0b249d9287acaefa9479f446b067ee79..96ed2ea34636535e42cdd48c5f13581e5b2301a9 100644 |
--- a/ui/gfx/ozone/surface_factory_ozone.cc |
+++ b/ui/gfx/ozone/surface_factory_ozone.cc |
@@ -84,6 +84,22 @@ const int32* SurfaceFactoryOzone::GetEGLSurfaceProperties( |
return desired_attributes; |
} |
+void* SurfaceFactoryOzone::GetFunctionPointerFromNativeLibrary( |
+ base::NativeLibrary library, |
+ const char* name) { |
+ return base::GetFunctionPointerFromNativeLibrary(library, name); |
+} |
+ |
+void SurfaceFactoryOzone::SetOverlayPlane(int plane_id, |
+ gfx::AcceleratedWidget handle, |
+ const gfx::Rect& bounds) {} |
+ |
+gfx::AcceleratedWidget SurfaceFactoryOzone::CreateNativeBuffer( |
+ gfx::Size size, |
+ unsigned internalformat) { |
+ return kNullAcceleratedWidget; |
+} |
+ |
// static |
SurfaceFactoryOzone* SurfaceFactoryOzone::CreateTestHelper() { |
return new SurfaceFactoryOzoneStub; |