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

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

Issue 275263002: [wip] ozonex: X11 backend for ozone. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 6 years, 7 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') | ui/gfx/x/gfx_x11.gyp » ('j') | 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 a1dbdd121dfd7cf284d9f372c1eac8eddfd3826c..61c02b3a454358b2517bdb2d4a9f2c9ea2b642d0 100644
--- a/ui/gfx/ozone/surface_factory_ozone.cc
+++ b/ui/gfx/ozone/surface_factory_ozone.cc
@@ -35,13 +35,13 @@ intptr_t SurfaceFactoryOzone::GetNativeDisplay() {
}
scoped_ptr<SurfaceOzoneEGL> SurfaceFactoryOzone::CreateEGLSurfaceForWidget(
- gfx::AcceleratedWidget widget) {
+ intptr_t widget) {
NOTIMPLEMENTED();
return scoped_ptr<SurfaceOzoneEGL>();
}
scoped_ptr<SurfaceOzoneCanvas> SurfaceFactoryOzone::CreateCanvasForWidget(
- gfx::AcceleratedWidget widget) {
+ intptr_t widget) {
NOTIMPLEMENTED();
return scoped_ptr<SurfaceOzoneCanvas>();
}
@@ -51,14 +51,13 @@ const int32* SurfaceFactoryOzone::GetEGLSurfaceProperties(
return desired_attributes;
}
-
gfx::OverlayCandidatesOzone* SurfaceFactoryOzone::GetOverlayCandidates(
- gfx::AcceleratedWidget w) {
+ intptr_t w) {
return NULL;
}
void SurfaceFactoryOzone::ScheduleOverlayPlane(
- gfx::AcceleratedWidget w,
+ intptr_t w,
int plane_z_order,
gfx::OverlayTransform plane_transform,
gfx::NativeBufferOzone buffer,
« no previous file with comments | « ui/gfx/ozone/surface_factory_ozone.h ('k') | ui/gfx/x/gfx_x11.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698