summaryrefslogtreecommitdiffstats
path: root/content/common
diff options
context:
space:
mode:
authorgbillock@chromium.org <gbillock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 02:32:52 +0000
committergbillock@chromium.org <gbillock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 02:32:52 +0000
commitb07ad52b08d16ce698ff224c3bd8d8d724b20c45 (patch)
tree9adc1cce88a8367a41a962e74b5e2ae635abf2fa /content/common
parent10689cad247866a32bf4d654d265700340f4a2a7 (diff)
downloadchromium_src-b07ad52b08d16ce698ff224c3bd8d8d724b20c45.zip
chromium_src-b07ad52b08d16ce698ff224c3bd8d8d724b20c45.tar.gz
chromium_src-b07ad52b08d16ce698ff224c3bd8d8d724b20c45.tar.bz2
Move web intents switch to content_switches.
R=jam@chromium.org BUG=None TEST=None Review URL: http://codereview.chromium.org/7821010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99292 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r--content/common/content_switches.cc3
-rw-r--r--content/common/content_switches.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/content/common/content_switches.cc b/content/common/content_switches.cc
index d066fc3..120f527 100644
--- a/content/common/content_switches.cc
+++ b/content/common/content_switches.cc
@@ -211,6 +211,9 @@ const char kEnableVideoFullscreen[] = "enable-video-fullscreen";
// the debug log.
const char kEnableVideoLogging[] = "enable-video-logging";
+// Enable Web Intents.
+const char kEnableWebIntents[] = "enable-web-intents";
+
// Enables experimental features for the geolocation API.
// Current features:
// - CoreLocation support for Mac OS X 10.6
diff --git a/content/common/content_switches.h b/content/common/content_switches.h
index 2d491b3..5bc95bd 100644
--- a/content/common/content_switches.h
+++ b/content/common/content_switches.h
@@ -74,6 +74,7 @@ extern const char kEnableSeccompSandbox[];
extern const char kEnableStatsTable[];
extern const char kEnableVideoFullscreen[];
extern const char kEnableVideoLogging[];
+extern const char kEnableWebIntents[];
extern const char kExperimentalLocationFeatures[];
// TODO(jam): this doesn't belong in content.
extern const char kExtensionProcess[];