| 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 #ifndef ASH_COMMON_WM_WINDOW_PROPERTY_H_ | |
| 6 #define ASH_COMMON_WM_WINDOW_PROPERTY_H_ | |
| 7 | |
| 8 namespace ash { | |
| 9 | |
| 10 // See ui/aura/client/aura_constants.h for some more detailed descriptions. | |
| 11 enum class WmWindowProperty { | |
| 12 // Not a valid property; used for property key translation purposes. | |
| 13 INVALID_PROPERTY, | |
| 14 | |
| 15 // Type bool. | |
| 16 ALWAYS_ON_TOP, | |
| 17 | |
| 18 // Type ImageSkia. | |
| 19 APP_ICON, | |
| 20 | |
| 21 // Type std::string. | |
| 22 APP_ID, | |
| 23 | |
| 24 // Type bool. | |
| 25 DRAW_ATTENTION, | |
| 26 | |
| 27 // Type int, but cast to ui::ModalType. | |
| 28 MODAL_TYPE, | |
| 29 | |
| 30 // Type bool. See ash::kPanelAttachedKey for details. | |
| 31 PANEL_ATTACHED, | |
| 32 | |
| 33 // Type int. | |
| 34 SHELF_ID, | |
| 35 | |
| 36 // Type int, but cast to ShelfItemType. | |
| 37 SHELF_ITEM_TYPE, | |
| 38 | |
| 39 // Type bool. | |
| 40 SNAP_CHILDREN_TO_PIXEL_BOUNDARY, | |
| 41 | |
| 42 // Type SkColor. See aura::client::kTopViewColor for details. | |
| 43 TOP_VIEW_COLOR, | |
| 44 | |
| 45 // Type int. See aura::client::kTopViewInset for details. | |
| 46 TOP_VIEW_INSET, | |
| 47 | |
| 48 // Type ImageSkia. | |
| 49 WINDOW_ICON, | |
| 50 }; | |
| 51 | |
| 52 } // namespace ash | |
| 53 | |
| 54 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_ | |
| OLD | NEW |