| Index: ui/display/chromeos/display_configurator.h
|
| diff --git a/ui/display/chromeos/display_configurator.h b/ui/display/chromeos/display_configurator.h
|
| index c77b96acd7c577321319de331724aa77829e3ab6..b61d3653a490975bdf4bbe7774e4678ae6cdd73a 100644
|
| --- a/ui/display/chromeos/display_configurator.h
|
| +++ b/ui/display/chromeos/display_configurator.h
|
| @@ -65,11 +65,13 @@ class DISPLAY_EXPORT DisplayConfigurator : public NativeDisplayObserver {
|
| // when this method is called, so the actual configuration could've changed
|
| // already.
|
| virtual void OnDisplayModeChanged(
|
| - const std::vector<DisplayState>& displays) {}
|
| + const DisplayStateList& displays) {}
|
|
|
| - // Called after a display mode change attempt failed. |failed_new_state| is
|
| - // the new state which the system failed to enter.
|
| + // Called after a display mode change attempt failed. |displays| contains
|
| + // displays that are detected when failed.
|
| + // |failed_new_state| is the new state which the system failed to enter.
|
| virtual void OnDisplayModeChangeFailed(
|
| + const DisplayStateList& displays,
|
| MultipleDisplayState failed_new_state) {}
|
| };
|
|
|
|
|