OLD | NEW |
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/host/drm_native_display_delegate.h" | 5 #include "ui/ozone/platform/drm/host/drm_native_display_delegate.h" |
6 | 6 |
7 #include <stdio.h> | 7 #include <stdio.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/thread_task_runner_handle.h" | 10 #include "base/thread_task_runner_handle.h" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 | 192 |
193 bool DrmNativeDisplayDelegate::SetHDCPState(const DisplaySnapshot& output, | 193 bool DrmNativeDisplayDelegate::SetHDCPState(const DisplaySnapshot& output, |
194 HDCPState state) { | 194 HDCPState state) { |
195 NOTIMPLEMENTED(); | 195 NOTIMPLEMENTED(); |
196 return false; | 196 return false; |
197 } | 197 } |
198 | 198 |
199 std::vector<ColorCalibrationProfile> | 199 std::vector<ColorCalibrationProfile> |
200 DrmNativeDisplayDelegate::GetAvailableColorCalibrationProfiles( | 200 DrmNativeDisplayDelegate::GetAvailableColorCalibrationProfiles( |
201 const DisplaySnapshot& output) { | 201 const DisplaySnapshot& output) { |
202 NOTIMPLEMENTED(); | |
203 return std::vector<ColorCalibrationProfile>(); | 202 return std::vector<ColorCalibrationProfile>(); |
204 } | 203 } |
205 | 204 |
206 bool DrmNativeDisplayDelegate::SetColorCalibrationProfile( | 205 bool DrmNativeDisplayDelegate::SetColorCalibrationProfile( |
207 const DisplaySnapshot& output, | 206 const DisplaySnapshot& output, |
208 ColorCalibrationProfile new_profile) { | 207 ColorCalibrationProfile new_profile) { |
209 NOTIMPLEMENTED(); | 208 NOTIMPLEMENTED(); |
210 return false; | 209 return false; |
211 } | 210 } |
212 | 211 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 configure_callback_map_.erase(it); | 333 configure_callback_map_.erase(it); |
335 } | 334 } |
336 } | 335 } |
337 | 336 |
338 void DrmNativeDisplayDelegate::RunUpdateDisplaysCallback( | 337 void DrmNativeDisplayDelegate::RunUpdateDisplaysCallback( |
339 const GetDisplaysCallback& callback) const { | 338 const GetDisplaysCallback& callback) const { |
340 callback.Run(displays_.get()); | 339 callback.Run(displays_.get()); |
341 } | 340 } |
342 | 341 |
343 } // namespace ui | 342 } // namespace ui |
OLD | NEW |