Chromium Code Reviews| Index: ash/common/wm_window_property.h |
| diff --git a/ash/common/wm_window_property.h b/ash/common/wm_window_property.h |
| index b96903567933ab61f8eca8e8c17b1a4429c590a4..02e3086cb46f56c1d68ba3eb221afb5f87c057a4 100644 |
| --- a/ash/common/wm_window_property.h |
| +++ b/ash/common/wm_window_property.h |
| @@ -9,22 +9,25 @@ namespace ash { |
| enum class WmWindowProperty { |
| // Type bool. |
| - SNAP_CHILDREN_TO_PIXEL_BOUNDARY, |
| - |
| - // Type bool. |
| ALWAYS_ON_TOP, |
| + // Type bool. See aura::client:kExcludeFromMruKey for details. |
| + EXCLUDE_FROM_MRU, |
| + |
| + // Type int, but cast to ui::ModalType. |
| + MODAL_TYPE, |
| + |
| // Type int. |
| SHELF_ID, |
| // Type ShelfItemDetails. |
| SHELF_ITEM_DETAILS, |
| + // Type bool. |
| + SNAP_CHILDREN_TO_PIXEL_BOUNDARY, |
| + |
| // Type int. See aura::client::kTopViewInset for details. |
| TOP_VIEW_INSET, |
| - |
| - // Type bool. See aura::client:kExcludeFromMruKey for details. |
| - EXCLUDE_FROM_MRU, |
| }; |
|
James Cook
2016/09/12 19:24:28
Hooray for alphabetical sorting!
|
| } // namespace ash |