| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/display/display.mojom"; | 7 import "services/ui/public/interfaces/display/display.mojom"; |
| 8 import "ui/gfx/geometry/mojo/geometry.mojom"; | 8 import "ui/gfx/geometry/mojo/geometry.mojom"; |
| 9 | 9 |
| 10 enum WindowManagerErrorCode { | 10 enum WindowManagerErrorCode { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // BUBBLE and POPUP. | 57 // BUBBLE and POPUP. |
| 58 WINDOW, | 58 WINDOW, |
| 59 PANEL, | 59 PANEL, |
| 60 WINDOW_FRAMELESS, | 60 WINDOW_FRAMELESS, |
| 61 CONTROL, | 61 CONTROL, |
| 62 POPUP, | 62 POPUP, |
| 63 MENU, | 63 MENU, |
| 64 TOOLTIP, | 64 TOOLTIP, |
| 65 BUBBLE, | 65 BUBBLE, |
| 66 DRAG, | 66 DRAG, |
| 67 UNKNOWN, |
| 67 }; | 68 }; |
| OLD | NEW |