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

Unified Diff: ui/aura/mus/mus_types.h

Issue 2456623002: Fixes to WindowTreeHostMus (Closed)
Patch Set: merge Created 4 years, 2 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
« no previous file with comments | « ui/aura/mus/in_flight_change.cc ('k') | ui/aura/mus/window_mus.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/mus/mus_types.h
diff --git a/ui/aura/mus/mus_types.h b/ui/aura/mus/mus_types.h
index 96638ecc2aeb45c8d27a5b328aa91797540d0cff..fe6d8d3637aed4b74fc12c1e3f302cee6322367f 100644
--- a/ui/aura/mus/mus_types.h
+++ b/ui/aura/mus/mus_types.h
@@ -22,6 +22,20 @@ using ClientSpecificId = uint16_t;
constexpr Id kInvalidServerId = 0;
+// Identifies the type of root window.
+enum class RootWindowType {
+ // The window is an embed root. That is, the client received this window by
+ // way of another client calling Embed().
+ EMBED,
+
+ // The window is a top level window, that is the client created it by way of
+ // NewTopLevelWindow().
+ TOP_LEVEL,
+
+ // The window is a display root for the window manager.
+ DISPLAY
+};
+
} // namespace ui
#endif // UI_AURA_MUS_MUS_TYPES_H_
« no previous file with comments | « ui/aura/mus/in_flight_change.cc ('k') | ui/aura/mus/window_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698