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/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 Loading... |
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 SetGammaRamp(const ui::DisplaySnapshot& output, |
| 106 const std::vector<GammaRampRGBEntry>& lut) { |
| 107 NOTIMPLEMENTED(); |
| 108 return false; |
| 109 } |
| 110 |
105 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { | 111 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { |
106 NOTIMPLEMENTED(); | 112 NOTIMPLEMENTED(); |
107 } | 113 } |
108 | 114 |
109 void NativeDisplayDelegateOzone::RemoveObserver( | 115 void NativeDisplayDelegateOzone::RemoveObserver( |
110 NativeDisplayObserver* observer) { | 116 NativeDisplayObserver* observer) { |
111 NOTIMPLEMENTED(); | 117 NOTIMPLEMENTED(); |
112 } | 118 } |
113 | 119 |
114 } // namespace ui | 120 } // namespace ui |
OLD | NEW |