| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/ozone/platform/dri/ozone_platform_dri.h" | 5 #include "ui/ozone/platform/dri/ozone_platform_dri.h" |
| 6 | 6 |
| 7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
| 8 #include "ui/events/ozone/device/device_manager.h" | 8 #include "ui/events/ozone/device/device_manager.h" |
| 9 #include "ui/events/ozone/evdev/cursor_delegate_evdev.h" | 9 #include "ui/events/ozone/evdev/cursor_delegate_evdev.h" |
| 10 #include "ui/events/ozone/evdev/event_factory_evdev.h" | 10 #include "ui/events/ozone/evdev/event_factory_evdev.h" |
| 11 #include "ui/ozone/ozone_platform.h" | |
| 12 #include "ui/ozone/platform/dri/cursor_factory_evdev_dri.h" | 11 #include "ui/ozone/platform/dri/cursor_factory_evdev_dri.h" |
| 13 #include "ui/ozone/platform/dri/dri_surface.h" | 12 #include "ui/ozone/platform/dri/dri_surface.h" |
| 14 #include "ui/ozone/platform/dri/dri_surface_factory.h" | 13 #include "ui/ozone/platform/dri/dri_surface_factory.h" |
| 15 #include "ui/ozone/platform/dri/dri_wrapper.h" | 14 #include "ui/ozone/platform/dri/dri_wrapper.h" |
| 16 #include "ui/ozone/platform/dri/scanout_surface.h" | 15 #include "ui/ozone/platform/dri/scanout_surface.h" |
| 17 #include "ui/ozone/platform/dri/screen_manager.h" | 16 #include "ui/ozone/platform/dri/screen_manager.h" |
| 18 #include "ui/ozone/platform/dri/virtual_terminal_manager.h" | 17 #include "ui/ozone/platform/dri/virtual_terminal_manager.h" |
| 18 #include "ui/ozone/public/ozone_platform.h" |
| 19 | 19 |
| 20 #if defined(OS_CHROMEOS) | 20 #if defined(OS_CHROMEOS) |
| 21 #include "ui/ozone/common/chromeos/touchscreen_device_manager_ozone.h" | 21 #include "ui/ozone/common/chromeos/touchscreen_device_manager_ozone.h" |
| 22 #include "ui/ozone/platform/dri/chromeos/native_display_delegate_dri.h" | 22 #include "ui/ozone/platform/dri/chromeos/native_display_delegate_dri.h" |
| 23 #endif | 23 #endif |
| 24 | 24 |
| 25 namespace ui { | 25 namespace ui { |
| 26 | 26 |
| 27 namespace { | 27 namespace { |
| 28 | 28 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 scoped_ptr<EventFactoryEvdev> event_factory_ozone_; | 112 scoped_ptr<EventFactoryEvdev> event_factory_ozone_; |
| 113 | 113 |
| 114 DISALLOW_COPY_AND_ASSIGN(OzonePlatformDri); | 114 DISALLOW_COPY_AND_ASSIGN(OzonePlatformDri); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 } // namespace | 117 } // namespace |
| 118 | 118 |
| 119 OzonePlatform* CreateOzonePlatformDri() { return new OzonePlatformDri; } | 119 OzonePlatform* CreateOzonePlatformDri() { return new OzonePlatformDri; } |
| 120 | 120 |
| 121 } // namespace ui | 121 } // namespace ui |
| OLD | NEW |