diff options
Diffstat (limited to 'ui/aura/window_tree_host_ozone.cc')
-rw-r--r-- | ui/aura/window_tree_host_ozone.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/aura/window_tree_host_ozone.cc b/ui/aura/window_tree_host_ozone.cc index 5b8be53..d247734 100644 --- a/ui/aura/window_tree_host_ozone.cc +++ b/ui/aura/window_tree_host_ozone.cc @@ -5,18 +5,18 @@ #include "ui/aura/window_tree_host_ozone.h" #include "ui/aura/window_event_dispatcher.h" -#include "ui/base/cursor/ozone/cursor_factory_ozone.h" -#include "ui/events/ozone/event_factory_ozone.h" #include "ui/events/platform/platform_event_source.h" -#include "ui/gfx/ozone/surface_factory_ozone.h" +#include "ui/ozone/public/cursor_factory_ozone.h" +#include "ui/ozone/public/event_factory_ozone.h" +#include "ui/ozone/public/surface_factory_ozone.h" namespace aura { WindowTreeHostOzone::WindowTreeHostOzone(const gfx::Rect& bounds) : widget_(0), bounds_(bounds) { - gfx::SurfaceFactoryOzone* surface_factory = - gfx::SurfaceFactoryOzone::GetInstance(); + ui::SurfaceFactoryOzone* surface_factory = + ui::SurfaceFactoryOzone::GetInstance(); widget_ = surface_factory->GetAcceleratedWidget(); ui::PlatformEventSource::GetInstance()->AddPlatformEventDispatcher(this); |