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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 return std::vector<ui::ColorCalibrationProfile>(); | 98 return std::vector<ui::ColorCalibrationProfile>(); |
99 } | 99 } |
100 | 100 |
101 bool NativeDisplayDelegateOzone::SetColorCalibrationProfile( | 101 bool NativeDisplayDelegateOzone::SetColorCalibrationProfile( |
102 const ui::DisplaySnapshot& output, | 102 const ui::DisplaySnapshot& output, |
103 ui::ColorCalibrationProfile new_profile) { | 103 ui::ColorCalibrationProfile new_profile) { |
104 NOTIMPLEMENTED(); | 104 NOTIMPLEMENTED(); |
105 return false; | 105 return false; |
106 } | 106 } |
107 | 107 |
| 108 bool NativeDisplayDelegateOzone::SetGammaRamp( |
| 109 const ui::DisplaySnapshot& output, |
| 110 const std::vector<GammaRampRGBEntry>& lut) { |
| 111 NOTIMPLEMENTED(); |
| 112 return false; |
| 113 } |
| 114 |
108 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { | 115 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { |
109 NOTIMPLEMENTED(); | 116 NOTIMPLEMENTED(); |
110 } | 117 } |
111 | 118 |
112 void NativeDisplayDelegateOzone::RemoveObserver( | 119 void NativeDisplayDelegateOzone::RemoveObserver( |
113 NativeDisplayObserver* observer) { | 120 NativeDisplayObserver* observer) { |
114 NOTIMPLEMENTED(); | 121 NOTIMPLEMENTED(); |
115 } | 122 } |
116 | 123 |
117 } // namespace ui | 124 } // namespace ui |
OLD | NEW |