| Index: chrome/common/chrome_switches.cc
 | 
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
 | 
| index e9dcaebc8b69ee3b6c2cba674a56d52fef8cc8fb..45bfcec3fd190b2472446686f0f2992939d801ee 100644
 | 
| --- a/chrome/common/chrome_switches.cc
 | 
| +++ b/chrome/common/chrome_switches.cc
 | 
| @@ -319,6 +319,11 @@ const char kDisableSessionCrashedBubble[] = "disable-session-crashed-bubble";
 | 
|  // and allocates certain resources accordingly.
 | 
|  const char kDisableSiteEngagementService[] = "disable-site-engagement-service";
 | 
|  
 | 
| +#if defined(OS_ANDROID)
 | 
| +// Disable VR UI if supported.
 | 
| +const char kDisableVrShell[] = "disable-vr-shell";
 | 
| +#endif
 | 
| +
 | 
|  // Disables Web Notification custom layouts.
 | 
|  const char kDisableWebNotificationCustomLayouts[] =
 | 
|      "disable-web-notification-custom-layouts";
 | 
| @@ -539,6 +544,11 @@ const char kEnableThumbnailRetargeting[]   = "enable-thumbnail-retargeting";
 | 
|  const char kEnableUserAlternateProtocolPorts[] =
 | 
|      "enable-user-controlled-alternate-protocol-ports";
 | 
|  
 | 
| +#if defined(OS_ANDROID)
 | 
| +// Enable VR UI if supported.
 | 
| +const char kEnableVrShell[] = "enable-vr-shell";
 | 
| +#endif
 | 
| +
 | 
|  // Enables a new "web app" style frame for hosted apps (including bookmark
 | 
|  // apps).
 | 
|  const char kEnableWebAppFrame[] = "enable-web-app-frame";
 | 
| 
 |