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

Unified Diff: chrome/common/chrome_features.cc

Issue 1763653002: Android: Remove the prompt when entering fullscreen mode (behind flag). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fullscreen-two-words
Patch Set: Fix interactive ui tests. Created 4 years, 9 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 | « chrome/common/chrome_features.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index 418e283f57c6f67ac6e4d6dda49d4a8ce43ab12a..a3787180e8e2a569460279a09df2c2b9ce9831c6 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -29,4 +29,18 @@ const base::Feature kRuntimeMemoryLeakDetector{
"RuntimeMemoryLeakDetector", base::FEATURE_DISABLED_BY_DEFAULT};
#endif // defined(OS_CHROMEOS)
+// A new user experience for transitioning into fullscreen and mouse pointer
+// lock states. The name is a misnomer (for historical reasons); affects both
+// Views and Android builds.
+const base::Feature kSimplifiedFullscreenUI{
+ "ViewsSimplifiedFullscreenUI",
+#if defined(USE_AURA)
+ // Windows, Linux, Chrome OS.
+ base::FEATURE_ENABLED_BY_DEFAULT,
+#else
+ // Mac, Android.
+ base::FEATURE_DISABLED_BY_DEFAULT,
+#endif
+};
+
} // namespace features
« no previous file with comments | « chrome/common/chrome_features.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698