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

Side by Side Diff: ui/ozone/platform/drm/host/drm_display_host.cc

Issue 1968923003: Fix include path for moved thread_task_runner_handle.h header in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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
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 #include "ui/ozone/platform/drm/host/drm_display_host.h" 5 #include "ui/ozone/platform/drm/host/drm_display_host.h"
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/memory/ptr_util.h" 8 #include "base/memory/ptr_util.h"
9 #include "base/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
10 #include "ui/ozone/common/display_snapshot_proxy.h" 10 #include "ui/ozone/common/display_snapshot_proxy.h"
11 #include "ui/ozone/common/display_util.h" 11 #include "ui/ozone/common/display_util.h"
12 #include "ui/ozone/platform/drm/host/gpu_thread_adapter.h" 12 #include "ui/ozone/platform/drm/host/gpu_thread_adapter.h"
13 13
14 namespace ui { 14 namespace ui {
15 15
16 DrmDisplayHost::DrmDisplayHost(GpuThreadAdapter* sender, 16 DrmDisplayHost::DrmDisplayHost(GpuThreadAdapter* sender,
17 const DisplaySnapshot_Params& params, 17 const DisplaySnapshot_Params& params,
18 bool is_dummy) 18 bool is_dummy)
19 : sender_(sender), 19 : sender_(sender),
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 void DrmDisplayHost::ClearCallbacks() { 123 void DrmDisplayHost::ClearCallbacks() {
124 if (!configure_callback_.is_null()) 124 if (!configure_callback_.is_null())
125 OnDisplayConfigured(false); 125 OnDisplayConfigured(false);
126 if (!get_hdcp_callback_.is_null()) 126 if (!get_hdcp_callback_.is_null())
127 OnHDCPStateReceived(false, HDCP_STATE_UNDESIRED); 127 OnHDCPStateReceived(false, HDCP_STATE_UNDESIRED);
128 if (!set_hdcp_callback_.is_null()) 128 if (!set_hdcp_callback_.is_null())
129 OnHDCPStateUpdated(false); 129 OnHDCPStateUpdated(false);
130 } 130 }
131 131
132 } // namespace ui 132 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/gpu/proxy_helpers.h ('k') | ui/ozone/platform/drm/host/drm_display_host_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698