| 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 ui.mojom; | 5 module ui.mojom; |
| 6 | 6 |
| 7 import "services/ui/public/interfaces/window_manager_constants.mojom"; | 7 import "services/ui/public/interfaces/window_manager_constants.mojom"; |
| 8 | 8 |
| 9 interface DisplayManagerObserver { | 9 interface DisplayManagerObserver { |
| 10 // Sent when the observer is added. Gives the initial state. | 10 // Sent when the observer is added. |displays| will contain all known |
| 11 OnDisplays(array<WsDisplay> displays); | 11 // displays. If the system that WS is running on has an integrated display, |
| 12 // for example a laptop internal display, then |internal_display_id| will |
| 13 // be the corresponding dislay id. If there is no internal display then |
| 14 // |internal_display_id| will be kInvalidDisplayID. |
| 15 OnDisplays(array<WsDisplay> displays, |
| 16 int64 primary_display_id, |
| 17 int64 internal_display_id); |
| 12 | 18 |
| 13 // The specified set of displays has changed in some way. This is used both | 19 // The specified set of displays has changed in some way. This is used both |
| 14 // when a new display is added, or when a property of a display changes. | 20 // when a new display is added, or when a property of a display changes. |
| 15 // |displays| does not necessarily contain the complete set of displays, | 21 // |displays| does not necessarily contain the complete set of displays, |
| 16 // only those that changed. | 22 // only those that changed. |
| 17 OnDisplaysChanged(array<WsDisplay> displays); | 23 OnDisplaysChanged(array<WsDisplay> displays); |
| 18 | 24 |
| 19 // An existing display was removed. | 25 // An existing display was removed. |
| 20 OnDisplayRemoved(int64 id); | 26 OnDisplayRemoved(int64 display_id); |
| 27 |
| 28 // The primary display has changed. |
| 29 OnPrimaryDisplayChanged(int64 primary_display_id); |
| 21 }; | 30 }; |
| 22 | 31 |
| 23 interface DisplayManager { | 32 interface DisplayManager { |
| 24 AddObserver(DisplayManagerObserver observer); | 33 AddObserver(DisplayManagerObserver observer); |
| 25 }; | 34 }; |
| OLD | NEW |