OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module display.mojom; | 5 module display.mojom; |
6 | 6 |
7 // Provides a way to modify the display state at runtime. Will only work when | 7 // Provides a way to modify the display state at runtime. Will only work when |
8 // running off device with fake displays. | 8 // running off device with fake displays. |
9 interface TestDisplayController { | 9 interface TestDisplayController { |
10 | 10 |
11 // Toggles adding or removing a fake display. If there is only one display | 11 // Toggles adding or removing a fake display. If there is only one display |
12 // a second display is added. If there is more than one display then the last | 12 // a second display is added. If there is more than one display then the last |
13 // display is removed. | 13 // display is removed. |
14 ToggleAddRemoveDisplay(); | 14 ToggleAddRemoveDisplay(); |
| 15 |
| 16 // Toggles the primary display resolution size. |
| 17 ToggleDisplayResolution(); |
15 }; | 18 }; |
OLD | NEW |