Chromium Code Reviews| 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 |