| Index: ui/display/chromeos/native_display_delegate.h
|
| diff --git a/ui/display/chromeos/native_display_delegate.h b/ui/display/chromeos/native_display_delegate.h
|
| index 2b3b776a4bb5e003ba771c0aabba6b757d4e99ff..5d961421edcfac63d56dadb040f40b5b3df7ee09 100644
|
| --- a/ui/display/chromeos/native_display_delegate.h
|
| +++ b/ui/display/chromeos/native_display_delegate.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef UI_DISPLAY_CHROMEOS_NATIVE_DISPLAY_DELEGATE_H_
|
| #define UI_DISPLAY_CHROMEOS_NATIVE_DISPLAY_DELEGATE_H_
|
|
|
| +#include <vector>
|
| +
|
| #include "ui/display/display_constants.h"
|
| #include "ui/display/display_export.h"
|
|
|
| @@ -71,6 +73,11 @@ class DISPLAY_EXPORT NativeDisplayDelegate {
|
| virtual bool SetHDCPState(const ui::DisplaySnapshot& output,
|
| ui::HDCPState state) = 0;
|
|
|
| + // Gets the available list of color calibrations.
|
| + virtual std::vector<ui::ColorCalibrationProfile>
|
| + GetAvailableColorCalibrationProfiles(
|
| + const ui::DisplaySnapshot& output) = 0;
|
| +
|
| // Sets the color calibration of |output| to |new_profile|.
|
| virtual bool SetColorCalibrationProfile(
|
| const ui::DisplaySnapshot& output,
|
|
|