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 97e28bf241f0c309d7ba1c8f774fb1089c489f31..e743c0c4993b05ab2bbefefad8499994add8c3d1 100644 |
--- a/ui/gfx/ozone/surface_factory_ozone.cc |
+++ b/ui/gfx/ozone/surface_factory_ozone.cc |
@@ -57,4 +57,20 @@ 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; |
+} |
+ |
} // namespace gfx |