| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module ash.mojom; | |
| 6 | |
| 7 // Containers windows may be parented to. | |
| 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 | |
| 10 // that other apps may need to parent windows to. | |
| 11 enum Container { | |
| 12 // TODO: remove everything but LOGIN_WINDOWS, http://crbug.com/616859. | |
| 13 WALLPAPER, | |
| 14 USER_PRIVATE_SHELF, | |
| 15 LOGIN_WINDOWS, | |
| 16 // Status area widget and message center notification popups. | |
| 17 STATUS, | |
| 18 // Bubble windows, for example the sysui system tray bubble and the screen | |
| 19 // brightness bubble. | |
| 20 BUBBLES, | |
| 21 MENUS, | |
| 22 DRAG_AND_TOOLTIPS, | |
| 23 OVERLAY, | |
| 24 }; | |
| 25 | |
| 26 const string kWindowContainer_Property = "ash:window-container"; | |
| OLD | NEW |