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/display/chromeos/display_configurator.h" | 5 #include "ui/display/chromeos/display_configurator.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/sys_info.h" | 10 #include "base/sys_info.h" |
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 } | 997 } |
998 | 998 |
999 void DisplayConfigurator::NotifyObservers( | 999 void DisplayConfigurator::NotifyObservers( |
1000 bool success, | 1000 bool success, |
1001 MultipleDisplayState attempted_state) { | 1001 MultipleDisplayState attempted_state) { |
1002 if (success) { | 1002 if (success) { |
1003 FOR_EACH_OBSERVER( | 1003 FOR_EACH_OBSERVER( |
1004 Observer, observers_, OnDisplayModeChanged(cached_displays_)); | 1004 Observer, observers_, OnDisplayModeChanged(cached_displays_)); |
1005 } else { | 1005 } else { |
1006 FOR_EACH_OBSERVER( | 1006 FOR_EACH_OBSERVER( |
1007 Observer, observers_, OnDisplayModeChangeFailed(attempted_state)); | 1007 Observer, observers_, OnDisplayModeChangeFailed(cached_displays_, |
| 1008 attempted_state)); |
1008 } | 1009 } |
1009 } | 1010 } |
1010 | 1011 |
1011 } // namespace ui | 1012 } // namespace ui |
OLD | NEW |