diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 6 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index c1c7a49..03dfadf 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -166,6 +166,9 @@ const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; // Browser flag to disable the web inspector for all renderers. const char kDisableDevTools[] = "disable-dev-tools"; +// Disables device orientation events. +const char kDisableDeviceOrientation[] = "disable-device-orientation"; + // Disable extensions. const char kDisableExtensions[] = "disable-extensions"; @@ -373,9 +376,6 @@ const char kEnableCookiePrompt[] = "enable-cookie-prompt"; // Enables device motion events. const char kEnableDeviceMotion[] = "enable-device-motion"; -// Enables device orientation events. -const char kEnableDeviceOrientation[] = "enable-device-orientation"; - const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; // Enables extension APIs that are in development. diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index a466041..1b87560 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -60,6 +60,7 @@ extern const char kDisableCustomJumpList[]; extern const char kDisableDatabases[]; extern const char kDisableDesktopNotifications[]; extern const char kDisableDevTools[]; +extern const char kDisableDeviceOrientation[]; extern const char kDisableExtensions[]; extern const char kDisableExtensionsFileAccessCheck[]; extern const char kDisableGeolocation[]; @@ -118,7 +119,6 @@ extern const char kEnableConnectBackupJobs[]; extern const char kEnableContentPrefetch[]; extern const char kEnableCookiePrompt[]; extern const char kEnableDeviceMotion[]; -extern const char kEnableDeviceOrientation[]; extern const char kEnableDNSSECCerts[]; extern const char kEnableExperimentalExtensionApis[]; extern const char kEnableExperimentalWebGL[]; |