| 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 | |
| 115 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { | 108 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { |
| 116 NOTIMPLEMENTED(); | 109 NOTIMPLEMENTED(); |
| 117 } | 110 } |
| 118 | 111 |
| 119 void NativeDisplayDelegateOzone::RemoveObserver( | 112 void NativeDisplayDelegateOzone::RemoveObserver( |
| 120 NativeDisplayObserver* observer) { | 113 NativeDisplayObserver* observer) { |
| 121 NOTIMPLEMENTED(); | 114 NOTIMPLEMENTED(); |
| 122 } | 115 } |
| 123 | 116 |
| 124 } // namespace ui | 117 } // namespace ui |
| OLD | NEW |