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

Side by Side Diff: ui/ozone/common/native_display_delegate_ozone.cc

Issue 1028563003: Load and apply a vcgt table from an ICC file to the internal display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix spang/oshima nits Created 5 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 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/common/native_display_delegate_ozone.h" 5 #include "ui/ozone/common/native_display_delegate_ozone.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "ui/ozone/common/display_snapshot_proxy.h" 8 #include "ui/ozone/common/display_snapshot_proxy.h"
9 #include "ui/ozone/common/display_util.h" 9 #include "ui/ozone/common/display_util.h"
10 10
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 return std::vector<ui::ColorCalibrationProfile>(); 95 return std::vector<ui::ColorCalibrationProfile>();
96 } 96 }
97 97
98 bool NativeDisplayDelegateOzone::SetColorCalibrationProfile( 98 bool NativeDisplayDelegateOzone::SetColorCalibrationProfile(
99 const ui::DisplaySnapshot& output, 99 const ui::DisplaySnapshot& output,
100 ui::ColorCalibrationProfile new_profile) { 100 ui::ColorCalibrationProfile new_profile) {
101 NOTIMPLEMENTED(); 101 NOTIMPLEMENTED();
102 return false; 102 return false;
103 } 103 }
104 104
105 bool NativeDisplayDelegateOzone::SetGammaRamp(const ui::DisplaySnapshot& output,
106 const std::vector<uint16_t>& r,
107 const std::vector<uint16_t>& g,
108 const std::vector<uint16_t>& b) {
109 NOTIMPLEMENTED();
110 return false;
111 }
112
105 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { 113 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) {
106 NOTIMPLEMENTED(); 114 NOTIMPLEMENTED();
107 } 115 }
108 116
109 void NativeDisplayDelegateOzone::RemoveObserver( 117 void NativeDisplayDelegateOzone::RemoveObserver(
110 NativeDisplayObserver* observer) { 118 NativeDisplayObserver* observer) {
111 NOTIMPLEMENTED(); 119 NOTIMPLEMENTED();
112 } 120 }
113 121
114 } // namespace ui 122 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698