Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: ui/gfx/ozone/surface_factory_ozone.cc

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698