| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index 1a96264756a2b0e3d5c7f60fe2360a04b7f29f25..d7dc9b5623fa2c35b446e4d5f695c7889076cf8f 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -486,9 +486,11 @@
|
|
|
| #if defined(OS_CHROMEOS)
|
| bool Shell::ShouldSaveDisplaySettings() {
|
| + // TODO(oshima): Allow saving the settings even in unified desktop mode.
|
| return !(screen_orientation_controller_
|
| ->ignore_display_configuration_updates() ||
|
| - resolution_notification_controller_->DoesNotificationTimeout());
|
| + resolution_notification_controller_->DoesNotificationTimeout()) &&
|
| + !switches::UnifiedDesktopEnabled();
|
| }
|
| #endif
|
|
|
|
|