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

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

Issue 183723003: Overlay interface for ozone. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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
« no previous file with comments | « ui/gfx/ozone/surface_factory_ozone.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6e21568ff7baaf581481a317a4e498303a424051..b7f482857801716008ca5f6aec5975b850d3d973 100644
--- a/ui/gfx/ozone/surface_factory_ozone.cc
+++ b/ui/gfx/ozone/surface_factory_ozone.cc
@@ -52,4 +52,24 @@ void SurfaceFactoryOzone::SetCursorImage(const SkBitmap& image) {
void SurfaceFactoryOzone::MoveCursorTo(const gfx::Point& location) {
}
+gfx::OverlayCandidatesOzone* SurfaceFactoryOzone::GetOverlayCandidates(
+ gfx::AcceleratedWidget w) {
+ return NULL;
+}
+
+void SurfaceFactoryOzone::ScheduleOverlayPlane(gfx::AcceleratedWidget w,
+ int plane_z_order,
+ OverlayTransform plane_transform,
+ gfx::NativeBufferOzone buffer,
+ const gfx::Rect& display_bounds,
+ gfx::RectF crop_rect) {
+ NOTREACHED();
+}
+
+gfx::NativeBufferOzone SurfaceFactoryOzone::CreateNativeBuffer(
+ gfx::Size size,
+ BufferFormat format) {
+ return 0;
+}
+
} // namespace gfx
« no previous file with comments | « ui/gfx/ozone/surface_factory_ozone.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698