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

Unified Diff: content/public/common/content_features.cc

Issue 2871053002: Enable VrShell by default on Android. (Closed)
Patch Set: rebase Created 3 years, 7 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 | « no previous file | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/content_features.cc
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
index f13ec8b3e9a7e618258fcd6be5c204c54d99b945..a060f6da4b06191594408f30646f6680f838fbb0 100644
--- a/content/public/common/content_features.cc
+++ b/content/public/common/content_features.cc
@@ -238,7 +238,14 @@ const base::Feature kVibrateRequiresUserGesture{
"VibrateRequiresUserGesture", base::FEATURE_ENABLED_BY_DEFAULT};
// Enables VR UI.
-const base::Feature kVrShell{"VrShell", base::FEATURE_DISABLED_BY_DEFAULT};
+const base::Feature kVrShell {
+ "VrShell",
+#if defined(OS_ANDROID)
+ base::FEATURE_ENABLED_BY_DEFAULT
+#else
+ base::FEATURE_DISABLED_BY_DEFAULT
+#endif
+};
// Enable WebAssembly structured cloning.
// http://webassembly.org/
« no previous file with comments | « no previous file | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698