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

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

Issue 1079613003: [ozone] Cleanup a spammy log message. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | no next file » | 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/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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698