| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 module display.mojom; |
| 6 |
| 7 // Provides a way to modify the display state at runtime. Will only work when |
| 8 // running off device with fake displays. |
| 9 interface TestDisplayController { |
| 10 |
| 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 |
| 13 // display is removed. |
| 14 ToggleAddRemoveDisplay(); |
| 15 }; |
| OLD | NEW |