| 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 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 |
| OLD | NEW |