Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: ui/ozone/platform/drm/ozone_platform_gbm.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread.cc ('k') | ui/views/mus/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/drm/ozone_platform_gbm.h" 5 #include "ui/ozone/platform/drm/ozone_platform_gbm.h"
6 6
7 #include <dlfcn.h> 7 #include <dlfcn.h>
8 #include <fcntl.h> 8 #include <fcntl.h>
9 #include <gbm.h> 9 #include <gbm.h>
10 #include <stdlib.h> 10 #include <stdlib.h>
11 #include <xf86drm.h> 11 #include <xf86drm.h>
12 12
13 #include <memory> 13 #include <memory>
14 #include <utility> 14 #include <utility>
15 15
16 #include "base/bind.h" 16 #include "base/bind.h"
17 #include "base/command_line.h" 17 #include "base/command_line.h"
18 #include "base/macros.h" 18 #include "base/macros.h"
19 #include "base/memory/ptr_util.h" 19 #include "base/memory/ptr_util.h"
20 #include "services/shell/public/cpp/interface_factory.h" 20 #include "services/service_manager/public/cpp/interface_factory.h"
21 #include "services/shell/public/cpp/interface_registry.h" 21 #include "services/service_manager/public/cpp/interface_registry.h"
22 #include "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h" 22 #include "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h"
23 #include "ui/events/ozone/device/device_manager.h" 23 #include "ui/events/ozone/device/device_manager.h"
24 #include "ui/events/ozone/evdev/event_factory_evdev.h" 24 #include "ui/events/ozone/evdev/event_factory_evdev.h"
25 #include "ui/events/ozone/layout/keyboard_layout_engine_manager.h" 25 #include "ui/events/ozone/layout/keyboard_layout_engine_manager.h"
26 #include "ui/ozone/platform/drm/common/drm_util.h" 26 #include "ui/ozone/platform/drm/common/drm_util.h"
27 #include "ui/ozone/platform/drm/cursor_proxy_mojo.h" 27 #include "ui/ozone/platform/drm/cursor_proxy_mojo.h"
28 #include "ui/ozone/platform/drm/gpu/drm_device_generator.h" 28 #include "ui/ozone/platform/drm/gpu/drm_device_generator.h"
29 #include "ui/ozone/platform/drm/gpu/drm_device_manager.h" 29 #include "ui/ozone/platform/drm/gpu/drm_device_manager.h"
30 #include "ui/ozone/platform/drm/gpu/drm_gpu_display_manager.h" 30 #include "ui/ozone/platform/drm/gpu/drm_gpu_display_manager.h"
31 #include "ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h" 31 #include "ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h"
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 DISALLOW_COPY_AND_ASSIGN(OzonePlatformGbm); 274 DISALLOW_COPY_AND_ASSIGN(OzonePlatformGbm);
275 }; 275 };
276 276
277 } // namespace 277 } // namespace
278 278
279 OzonePlatform* CreateOzonePlatformGbm() { 279 OzonePlatform* CreateOzonePlatformGbm() {
280 return new OzonePlatformGbm; 280 return new OzonePlatformGbm;
281 } 281 }
282 282
283 } // namespace ui 283 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread.cc ('k') | ui/views/mus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698