| 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 #ifndef UI_AURA_MUS_MUS_TYPES_H_ | 5 #ifndef UI_AURA_MUS_MUS_TYPES_H_ |
| 6 #define UI_AURA_MUS_MUS_TYPES_H_ | 6 #define UI_AURA_MUS_MUS_TYPES_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 // Typedefs for the transport types. These typedefs match that of the mojom | 10 // Typedefs for the transport types. These typedefs match that of the mojom |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 // The window was created by requesting a top level | 34 // The window was created by requesting a top level |
| 35 // (WindowTree::NewTopLevel()). | 35 // (WindowTree::NewTopLevel()). |
| 36 // NOTE: in the window manager (the one responsible for actually creating the | 36 // NOTE: in the window manager (the one responsible for actually creating the |
| 37 // real window) the window is of type TOP_LEVEL_IN_WM. | 37 // real window) the window is of type TOP_LEVEL_IN_WM. |
| 38 TOP_LEVEL, | 38 TOP_LEVEL, |
| 39 | 39 |
| 40 // The window is a top level window in the window manager. | 40 // The window is a top level window in the window manager. |
| 41 TOP_LEVEL_IN_WM, | 41 TOP_LEVEL_IN_WM, |
| 42 | 42 |
| 43 // The window is a display root for the window manager. | 43 // The window is a display root for the window manager and was automatically |
| 44 DISPLAY, | 44 // created by mus. |
| 45 DISPLAY_AUTOMATICALLY_CREATED, |
| 46 |
| 47 // The window is a display root for the window manager and was manually |
| 48 // created. |
| 49 DISPLAY_MANUALLY_CREATED, |
| 45 | 50 |
| 46 // The window was created locally. | 51 // The window was created locally. |
| 47 LOCAL, | 52 LOCAL, |
| 48 | 53 |
| 49 // Not one of the above. This means the window is visible to the client and | 54 // Not one of the above. This means the window is visible to the client and |
| 50 // not one of the above values. Practically this means this client is the | 55 // not one of the above values. Practically this means this client is the |
| 51 // window manager and the window was created by another client. | 56 // window manager and the window was created by another client. |
| 52 OTHER, | 57 OTHER, |
| 53 }; | 58 }; |
| 54 | 59 |
| 55 } // namespace ui | 60 } // namespace ui |
| 56 | 61 |
| 57 #endif // UI_AURA_MUS_MUS_TYPES_H_ | 62 #endif // UI_AURA_MUS_MUS_TYPES_H_ |
| OLD | NEW |