Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1759)

Unified Diff: ash/common/wm_window_property.h

Issue 2336653002: Ports SystemModalContainerLayoutManager to ash/common (Closed)
Patch Set: cleanup Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698