| Index: ui/display/chromeos/x11/native_display_delegate_x11.cc
|
| diff --git a/ui/display/chromeos/x11/native_display_delegate_x11.cc b/ui/display/chromeos/x11/native_display_delegate_x11.cc
|
| index 2135ad9c7b02bd5616660ccee4dd9fa4189b55dc..b56146e7cfd5b3353ee56b48a4b925d9e565a7b2 100644
|
| --- a/ui/display/chromeos/x11/native_display_delegate_x11.cc
|
| +++ b/ui/display/chromeos/x11/native_display_delegate_x11.cc
|
| @@ -384,9 +384,6 @@ DisplaySnapshotX11* NativeDisplayDelegateX11::InitDisplaySnapshot(
|
| const DisplayMode* native_mode = NULL;
|
| std::vector<const DisplayMode*> display_modes;
|
|
|
| - // TODO(mukai|marcheu): check the system status and fill the correct list of
|
| - // available color profiles.
|
| -
|
| for (int i = 0; i < info->nmode; ++i) {
|
| const RRMode mode = info->modes[i];
|
| if (modes_.find(mode) != modes_.end()) {
|
| @@ -607,6 +604,15 @@ bool NativeDisplayDelegateX11::IsOutputAspectPreservingScaling(RROutput id) {
|
| return ret;
|
| }
|
|
|
| +
|
| +std::vector<ColorCalibrationProfile>
|
| +NativeDisplayDelegateX11::GetAvailableColorCalibrationProfiles(
|
| + const DisplaySnapshot& output) {
|
| + // TODO(mukai|marcheu): Checks the system data and fills the result.
|
| + // Note that the order would be Dynamic -> Standard -> Movie -> Reading.
|
| + return std::vector<ColorCalibrationProfile>();
|
| +}
|
| +
|
| bool NativeDisplayDelegateX11::SetColorCalibrationProfile(
|
| const DisplaySnapshot& output,
|
| ColorCalibrationProfile new_profile) {
|
|
|