diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-22 09:55:33 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-22 09:55:33 +0000 |
commit | 66249e26a883eb057e1e9283ca22e3b825fd3e11 (patch) | |
tree | 73da02e17244967922d185e2515541a284a44be2 /chrome/common | |
parent | 2a83e76e21d8d9f62c318a0fff9f7ec73fa3c300 (diff) | |
download | chromium_src-66249e26a883eb057e1e9283ca22e3b825fd3e11.zip chromium_src-66249e26a883eb057e1e9283ca22e3b825fd3e11.tar.gz chromium_src-66249e26a883eb057e1e9283ca22e3b825fd3e11.tar.bz2 |
Add --enable-device-orientation switch and set ENABLE_DEVICE_ORIENTATION=1
Flip the compile-time enable switch for device orientation to on,
and add a command-line switch to put the functionality behind.
The command-line flag will be used both on the Chromium side,
and in WebKit via WebRuntimeFeatures.
BUG=44654
TEST=browser_tests --gtest_filter=DeviceOrientationEnableSwitchTest.*
Review URL: http://codereview.chromium.org/3042009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53317 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 3c4255a..93586b5 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -293,6 +293,9 @@ const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; // Enables the Cloud Print dialog hosting code. const char kEnableCloudPrint[] = "enable-cloud-print"; +// Enables device orientation events. +const char kEnableDeviceOrientation[] = "enable-device-orientation"; + // Enables extension APIs that are in development. const char kEnableExperimentalExtensionApis[] = "enable-experimental-extension-apis"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 70a8268..ce8a7bc 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -97,6 +97,7 @@ extern const char kEnableBenchmarking[]; extern const char kEnableChromoting[]; extern const char kEnableCloudPrintProxy[]; extern const char kEnableCloudPrint[]; +extern const char kEnableDeviceOrientation[]; extern const char kEnableExperimentalExtensionApis[]; extern const char kEnableExperimentalWebGL[]; extern const char kEnableExtensionTimelineApi[]; |