| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/egltest/ozone_platform_egltest.h" | 5 #include "ui/ozone/platform/egltest/ozone_platform_egltest.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/environment.h" | 8 #include "base/environment.h" |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| 11 #include "library_loaders/libeglplatform_shim.h" | 11 #include "library_loaders/libeglplatform_shim.h" |
| 12 #include "ui/events/ozone/device/device_manager.h" | 12 #include "ui/events/ozone/device/device_manager.h" |
| 13 #include "ui/events/ozone/evdev/event_factory_evdev.h" | 13 #include "ui/events/ozone/evdev/event_factory_evdev.h" |
| 14 #include "ui/gfx/vsync_provider.h" | 14 #include "ui/gfx/vsync_provider.h" |
| 15 #include "ui/ozone/ozone_platform.h" | 15 #include "ui/ozone/ozone_platform.h" |
| 16 #include "ui/ozone/ozone_switches.h" | 16 #include "ui/ozone/ozone_switches.h" |
| 17 #include "ui/ozone/platform/test/file_surface_factory.h" | |
| 18 #include "ui/ozone/public/cursor_factory_ozone.h" | 17 #include "ui/ozone/public/cursor_factory_ozone.h" |
| 19 #include "ui/ozone/public/gpu_platform_support.h" | 18 #include "ui/ozone/public/gpu_platform_support.h" |
| 20 #include "ui/ozone/public/gpu_platform_support_host.h" | 19 #include "ui/ozone/public/gpu_platform_support_host.h" |
| 20 #include "ui/ozone/public/surface_factory_ozone.h" |
| 21 #include "ui/ozone/public/surface_ozone_egl.h" | 21 #include "ui/ozone/public/surface_ozone_egl.h" |
| 22 | 22 |
| 23 #if defined(OS_CHROMEOS) | 23 #if defined(OS_CHROMEOS) |
| 24 #include "ui/ozone/common/chromeos/native_display_delegate_ozone.h" | 24 #include "ui/ozone/common/chromeos/native_display_delegate_ozone.h" |
| 25 #include "ui/ozone/common/chromeos/touchscreen_device_manager_ozone.h" | 25 #include "ui/ozone/common/chromeos/touchscreen_device_manager_ozone.h" |
| 26 #endif | 26 #endif |
| 27 | 27 |
| 28 #include <EGL/egl.h> | 28 #include <EGL/egl.h> |
| 29 | 29 |
| 30 namespace ui { | 30 namespace ui { |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 | 303 |
| 304 } // namespace | 304 } // namespace |
| 305 | 305 |
| 306 OzonePlatform* CreateOzonePlatformEgltest() { | 306 OzonePlatform* CreateOzonePlatformEgltest() { |
| 307 OzonePlatformEgltest* platform = new OzonePlatformEgltest; | 307 OzonePlatformEgltest* platform = new OzonePlatformEgltest; |
| 308 platform->Initialize(); | 308 platform->Initialize(); |
| 309 return platform; | 309 return platform; |
| 310 } | 310 } |
| 311 | 311 |
| 312 } // namespace ui | 312 } // namespace ui |
| OLD | NEW |