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

Side by Side Diff: ui/ozone/platform/drm/gpu/drm_thread_proxy.h

Issue 2484863005: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Fix another conflict Created 4 years, 1 month 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.h ('k') | ui/ozone/platform/drm/gpu/drm_window.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef UI_OZONE_PLATFORM_DRM_GPU_DRM_THREAD_PROXY_H_ 5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_DRM_THREAD_PROXY_H_
6 #define UI_OZONE_PLATFORM_DRM_GPU_DRM_THREAD_PROXY_H_ 6 #define UI_OZONE_PLATFORM_DRM_GPU_DRM_THREAD_PROXY_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "ui/ozone/platform/drm/gpu/drm_thread.h" 12 #include "ui/ozone/platform/drm/gpu/drm_thread.h"
13 #include "ui/ozone/public/interfaces/device_cursor.mojom.h" 13 #include "ui/ozone/public/interfaces/device_cursor.mojom.h"
14 14
15 namespace service_manager {
16 class Connection;
17 }
18
19 namespace ui { 15 namespace ui {
20 16
21 class DrmWindowProxy; 17 class DrmWindowProxy;
22 class InterThreadMessagingProxy; 18 class InterThreadMessagingProxy;
23 19
24 // Mediates the communication between GPU main/IO threads and the DRM thread. It 20 // Mediates the communication between GPU main/IO threads and the DRM thread. It
25 // serves proxy objects that are safe to call on the GPU threads. The proxy 21 // serves proxy objects that are safe to call on the GPU threads. The proxy
26 // objects then deal with safely posting the messages to the DRM thread. 22 // objects then deal with safely posting the messages to the DRM thread.
27 class DrmThreadProxy { 23 class DrmThreadProxy {
28 public: 24 public:
(...skipping 24 matching lines...) Expand all
53 49
54 private: 50 private:
55 DrmThread drm_thread_; 51 DrmThread drm_thread_;
56 52
57 DISALLOW_COPY_AND_ASSIGN(DrmThreadProxy); 53 DISALLOW_COPY_AND_ASSIGN(DrmThreadProxy);
58 }; 54 };
59 55
60 } // namespace ui 56 } // namespace ui
61 57
62 #endif // UI_OZONE_PLATFORM_DRM_GPU_DRM_THREAD_PROXY_H_ 58 #endif // UI_OZONE_PLATFORM_DRM_GPU_DRM_THREAD_PROXY_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread.h ('k') | ui/ozone/platform/drm/gpu/drm_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698