| Index: ui/ozone/platform/drm/host/drm_gpu_platform_support_host.h
|
| diff --git a/ui/ozone/platform/drm/host/drm_gpu_platform_support_host.h b/ui/ozone/platform/drm/host/drm_gpu_platform_support_host.h
|
| index bad5b385c00e60ab71013a810279a27e45b5100a..25f37da7d813c81a1bd959da1c155fc357be057c 100644
|
| --- a/ui/ozone/platform/drm/host/drm_gpu_platform_support_host.h
|
| +++ b/ui/ozone/platform/drm/host/drm_gpu_platform_support_host.h
|
| @@ -21,11 +21,12 @@ class Point;
|
| namespace ui {
|
|
|
| class ChannelObserver;
|
| +class DrmCursor;
|
|
|
| class DrmGpuPlatformSupportHost : public GpuPlatformSupportHost,
|
| public IPC::Sender {
|
| public:
|
| - DrmGpuPlatformSupportHost();
|
| + DrmGpuPlatformSupportHost(DrmCursor* cursor);
|
| ~DrmGpuPlatformSupportHost() override;
|
|
|
| void RegisterHandler(GpuPlatformSupportHost* handler);
|
| @@ -55,7 +56,8 @@ class DrmGpuPlatformSupportHost : public GpuPlatformSupportHost,
|
| scoped_refptr<base::SingleThreadTaskRunner> send_runner_;
|
| base::Callback<void(IPC::Message*)> send_callback_;
|
|
|
| - std::vector<GpuPlatformSupportHost*> handlers_;
|
| + std::vector<GpuPlatformSupportHost*> handlers_; // Not owned.
|
| + DrmCursor* cursor_; // Not owned.
|
| ObserverList<ChannelObserver> channel_observers_;
|
| };
|
|
|
|
|