Chromium Code Reviews| Index: services/ui/public/interfaces/display/display_controller.mojom |
| diff --git a/services/ui/public/interfaces/display/display_controller.mojom b/services/ui/public/interfaces/display/display_controller.mojom |
| index c4e126d824ea64e82ef841089fe7ccfc44e2d51d..683eda0445615ba6ffc723182f830f90b528b3ba 100644 |
| --- a/services/ui/public/interfaces/display/display_controller.mojom |
| +++ b/services/ui/public/interfaces/display/display_controller.mojom |
| @@ -10,9 +10,29 @@ import "ui/gfx/geometry/mojo/geometry.mojom"; |
| // state. |
| interface DisplayController { |
| + // =========================== Keyboard Shortcuts =========================== |
| + |
| + // Increase zoom on internal display. |
| + InternalDisplayIncreaseZoom(); |
|
James Cook
2016/12/01 18:59:47
IncreaseInternalDisplayZoom to start with verb?
kylechar
2016/12/01 19:02:12
Done.
|
| + |
| + // Decrease zoom on internal display. |
| + InternalDisplayDecreaseZoom(); |
| + |
| + // Reset zoom on internal display to default level. |
| + InternalDisplayResetZoom(); |
| + |
| + // Rotate the current display by 90° CW. The current display is the display |
| + // closest to the mouse cursor. |
| + RotateCurrentDisplayCW(); |
| + |
| // Swap the primary display and the next display. |
| SwapPrimaryDisplay(); |
| + // Toggles between mirroring and extended mode. |
| + ToggleMirrorMode(); |
| + |
| + // ========================= Configuration Changes ========================== |
| + |
| // Sets the display work area with the provided insets. The display size is |
| // included to ensure that the insets are for the current display size. |
| SetDisplayWorkArea(int64 display_id, |