| 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/
|
|
|