summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-01 02:34:01 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-01 02:34:01 +0000
commit62af76ea5dd4a96969e138ab5019ec7d1b29c5b9 (patch)
treefb132177b5942907fed4f863dbf41b38f639a1a9 /chrome/common
parentccda3a15c34899ac74216ed67411733563417f2b (diff)
downloadchromium_src-62af76ea5dd4a96969e138ab5019ec7d1b29c5b9.zip
chromium_src-62af76ea5dd4a96969e138ab5019ec7d1b29c5b9.tar.gz
chromium_src-62af76ea5dd4a96969e138ab5019ec7d1b29c5b9.tar.bz2
Web Intents: Preparatory work.
* Added --enable-web-intents switch. * Added enable_web_intents build variable, for use in WebKit mostly. * Added registration InfoBar and piping to the WebKit side, which is not hooked up on that side yet. BUG=none TEST=RegisterIntentHandlerInfoBarDelegateTest.* Review URL: http://codereview.chromium.org/7461093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94867 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc3
-rw-r--r--chrome/common/chrome_switches.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 4c0bd6c..c8667c8 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -531,6 +531,9 @@ const char kEnableVerticalTabs[] = "enable-vertical-tabs";
// Order of the listed sub-arguments does not matter.
const char kEnableWatchdog[] = "enable-watchdog";
+// Enable Web Intents.
+const char kEnableWebIntents[] = "enable-web-intents";
+
// Use WebSocket over SPDY.
const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index f1a1c3b..4fa2c0b 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -156,6 +156,7 @@ extern const char kEnableTcpFastOpen[];
extern const char kEnableTopSites[];
extern const char kEnableVerticalTabs[];
extern const char kEnableWatchdog[];
+extern const char kEnableWebIntents[];
extern const char kEnableWebSocketOverSpdy[];
extern const char kEnableWebUITaskManager[];
extern const char kExperimentalSpellcheckerFeatures[];