Chromium Code Reviews| 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 arc.mojom; | |
| 6 | |
| 7 [Extensible] | |
| 8 enum WindowManagerMode { | |
| 9 MODE_NORMAL = 0, | |
| 10 MODE_TOUCH_VIEW = 1 | |
| 11 }; | |
| 12 | |
| 13 interface WindowManagerInstance { | |
| 14 // Informs of the currently used window mode. | |
| 15 OnWindowManagerModeChange@0(WindowManagerMode mode); | |
| 16 }; | |
| OLD | NEW |