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/drm/ozone_platform_drm.h" | 5 #include "ui/ozone/platform/drm/ozone_platform_drm.h" |
6 | 6 |
7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
8 #include "base/thread_task_runner_handle.h" | 8 #include "base/thread_task_runner_handle.h" |
9 #include "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h" | 9 #include "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h" |
10 #include "ui/events/ozone/device/device_manager.h" | 10 #include "ui/events/ozone/device/device_manager.h" |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 | 160 |
161 DISALLOW_COPY_AND_ASSIGN(OzonePlatformDrm); | 161 DISALLOW_COPY_AND_ASSIGN(OzonePlatformDrm); |
162 }; | 162 }; |
163 | 163 |
164 } // namespace | 164 } // namespace |
165 | 165 |
166 OzonePlatform* CreateOzonePlatformDri() { | 166 OzonePlatform* CreateOzonePlatformDri() { |
167 return new OzonePlatformDrm; | 167 return new OzonePlatformDrm; |
168 } | 168 } |
169 | 169 |
| 170 OzonePlatform* CreateOzonePlatformDrm() { |
| 171 return new OzonePlatformDrm; |
| 172 } |
| 173 |
170 } // namespace ui | 174 } // namespace ui |
OLD | NEW |