diff options
author | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 04:43:21 +0000 |
---|---|---|
committer | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 04:43:21 +0000 |
commit | 7adaccba309723e23cf444e4d64b5d5a761591e3 (patch) | |
tree | 9e95f5bdcde65854be5bfc18853c23a00bcc1749 /chrome/common | |
parent | 595c0ffc98abcad93010c94da8e99a87efce80c8 (diff) | |
download | chromium_src-7adaccba309723e23cf444e4d64b5d5a761591e3.zip chromium_src-7adaccba309723e23cf444e4d64b5d5a761591e3.tar.gz chromium_src-7adaccba309723e23cf444e4d64b5d5a761591e3.tar.bz2 |
Add a command line switch to enable flip sockets.
With this change, flip code is now compiled
and the limited unit tests actually run.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/259064
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28793 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 6d3fb14..bb11493 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -550,6 +550,10 @@ const char kEnableMonitorProfile[] = "enable-monitor-profile"; // Disable WebKit's XSSAuditor. The XSSAuditor mitigates reflective XSS. const char kDisableXSSAuditor[] = "disable-xss-auditor"; +// Use Flip for the transport protocol instead of HTTP. +// This is a temporary testing flag. +const wchar_t kUseFlip[] = L"use-flip"; + #if defined(OS_POSIX) // A flag, generated internally by Chrome for renderer and other helper process // command lines on Linux and Mac. It tells the helper process to enable crash diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 8c9ed0b..48c9142 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -207,6 +207,8 @@ extern const char kEnableMonitorProfile[]; extern const char kDisableXSSAuditor[]; +extern const wchar_t kUseFlip[]; + #if defined(OS_POSIX) extern const char kEnableCrashReporter[]; #endif |