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

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: Do not base off string changes CL. Created 4 years, 10 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
« chrome/browser/about_flags.cc ('K') | « 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 b571587be63827821488e5123875a7a0127a5a6a..7202f671d5af5b7f8fd2fe7c17e83f191f7ed27b 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -22,4 +22,18 @@ const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{
"LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT};
#endif
+// 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{
jochen (gone - plz use gerrit) 2016/03/04 12:54:39 is this clang-formatted?
Matt Giuca 2016/03/04 23:00:28 Not sure (I was following the pattern for the rest
Matt Giuca 2016/03/07 05:53:09 Uh yeah, it is "kind of" clang formatted. Without
+ "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
« chrome/browser/about_flags.cc ('K') | « chrome/common/chrome_features.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698