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

Unified Diff: ui/aura/client/aura_constants.h

Issue 2645673003: Add an aura window property for Immersive fullscreen mode (Closed)
Patch Set: Fix review issues Created 3 years, 11 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: ui/aura/client/aura_constants.h
diff --git a/ui/aura/client/aura_constants.h b/ui/aura/client/aura_constants.h
index 71df93741f26207086172b2df2bc0f45989f3014..65879c05f72ab434400c087874883575c8eff7fb 100644
--- a/ui/aura/client/aura_constants.h
+++ b/ui/aura/client/aura_constants.h
@@ -53,6 +53,13 @@ AURA_EXPORT extern const WindowProperty<bool>* const kConstrainedWindowKey;
// attention.
AURA_EXPORT extern const aura::WindowProperty<bool>* const kDrawAttentionKey;
+// A property key to indicate that a window should be in immersive mode when the
+// window enters the fullscreen mode. The immersive fullscreen mode is slightly
+// different from the normal fullscreen mode by allowing the user to reveal the
+// top portion of the window through a touch / mouse gesture.
+AURA_EXPORT extern const aura::WindowProperty<bool>* const
+ kImmersiveFullscreenKey;
+
// A property key to indicate that a window is being "mirrored" and its contents
// should render regardless of its actual visibility state.
AURA_EXPORT extern const aura::WindowProperty<bool>* const kMirroringEnabledKey;

Powered by Google App Engine
This is Rietveld 408576698