Index: ui/aura/window_tree_host_ozone.cc |
diff --git a/ui/aura/window_tree_host_ozone.cc b/ui/aura/window_tree_host_ozone.cc |
index 5b8be534b98dbfcf65f5677730dd2c29858cd717..d247734940e48f70a08a0e4a396fbcfde322295c 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); |