| Index: ui/ozone/platform/dri/gbm_surface_factory.cc
|
| diff --git a/ui/ozone/platform/dri/gbm_surface_factory.cc b/ui/ozone/platform/dri/gbm_surface_factory.cc
|
| index 0c864d3c76ce8a9bb94b35a4cd55add38e3f60a5..87446d41c0903206b4e424fe91e9ef59e22fffd9 100644
|
| --- a/ui/ozone/platform/dri/gbm_surface_factory.cc
|
| +++ b/ui/ozone/platform/dri/gbm_surface_factory.cc
|
| @@ -7,7 +7,7 @@
|
| #include <EGL/egl.h>
|
|
|
| #include "base/files/file_path.h"
|
| -#include "ui/gfx/ozone/surface_ozone_egl.h"
|
| +#include "ui/ozone/factories/surface_ozone_egl.h"
|
| #include "ui/ozone/platform/dri/dri_vsync_provider.h"
|
| #include "ui/ozone/platform/dri/gbm_surface.h"
|
| #include "ui/ozone/platform/dri/hardware_display_controller.h"
|
| @@ -18,7 +18,7 @@ namespace ui {
|
|
|
| namespace {
|
|
|
| -class GbmSurfaceAdapter : public gfx::SurfaceOzoneEGL {
|
| +class GbmSurfaceAdapter : public ui::SurfaceOzoneEGL {
|
| public:
|
| GbmSurfaceAdapter(const base::WeakPtr<HardwareDisplayController>& controller);
|
| virtual ~GbmSurfaceAdapter();
|
| @@ -141,12 +141,12 @@ bool GbmSurfaceFactory::LoadEGLGLES2Bindings(
|
| return true;
|
| }
|
|
|
| -scoped_ptr<gfx::SurfaceOzoneEGL> GbmSurfaceFactory::CreateEGLSurfaceForWidget(
|
| +scoped_ptr<ui::SurfaceOzoneEGL> GbmSurfaceFactory::CreateEGLSurfaceForWidget(
|
| gfx::AcceleratedWidget w) {
|
| CHECK(state_ == INITIALIZED);
|
| ResetCursor(w);
|
|
|
| - return scoped_ptr<gfx::SurfaceOzoneEGL>(
|
| + return scoped_ptr<ui::SurfaceOzoneEGL>(
|
| new GbmSurfaceAdapter(screen_manager_->GetDisplayController(w)));
|
| }
|
|
|
|
|