| 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 ash.mojom; | 5 module ash.mojom; |
| 6 | 6 |
| 7 // Containers windows may be parented to. | 7 // Containers windows may be parented to. |
| 8 // NOTE: this is not the complete list of containers created by ash. See | 8 // NOTE: this is not the complete list of containers created by ash. See |
| 9 // ash/common/shell_window_ids.h for the complete this. This is only a subset | 9 // ash/common/shell_window_ids.h for the complete this. This is only a subset |
| 10 // that other apps may need to parent windows to. | 10 // that other apps may need to parent windows to. |
| 11 enum Container { | 11 enum Container { |
| 12 // TODO: remove everything but LOGIN_WINDOWS, http://crbug.com/616859. | 12 // TODO: remove everything but LOGIN_WINDOWS, http://crbug.com/616859. |
| 13 USER_BACKGROUND, | 13 USER_BACKGROUND, |
| 14 USER_PRIVATE_SHELF, | 14 USER_PRIVATE_SHELF, |
| 15 LOGIN_WINDOWS, | 15 LOGIN_WINDOWS, |
| 16 // Status area widget and message center notification popups. | 16 // Status area widget and message center notification popups. |
| 17 STATUS, | 17 STATUS, |
| 18 // Bubble windows, for example the sysui system tray bubble and the screen | 18 // Bubble windows, for example the sysui system tray bubble and the screen |
| 19 // brightness bubble. | 19 // brightness bubble. |
| 20 BUBBLES, | 20 BUBBLES, |
| 21 MENUS, | 21 MENUS, |
| 22 DRAG_AND_TOOLTIPS, | 22 DRAG_AND_TOOLTIPS, |
| 23 OVERLAY, |
| 23 }; | 24 }; |
| 24 | 25 |
| 25 const string kWindowContainer_Property = "ash:window-container"; | 26 const string kWindowContainer_Property = "ash:window-container"; |
| OLD | NEW |