diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 15:48:52 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 15:48:52 +0000 |
commit | 52315371aa5bb0c9d2c6094d28649684765057d1 (patch) | |
tree | c1aaa51ae579e4acf7af767173bfde66bee43d59 /chrome/common/chrome_switches.cc | |
parent | d05cd10167055b92abefae9dbb700b49da657491 (diff) | |
download | chromium_src-52315371aa5bb0c9d2c6094d28649684765057d1.zip chromium_src-52315371aa5bb0c9d2c6094d28649684765057d1.tar.gz chromium_src-52315371aa5bb0c9d2c6094d28649684765057d1.tar.bz2 |
Change the use-flip command line flag from wchar_t to char
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/338038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30196 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 38cefd3..203e4b3 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -558,6 +558,10 @@ const char kTryChromeAgain[] = "try-chrome-again"; // Runs un-installation steps that were done by chrome first-run. const char kUninstall[] = "uninstall"; +// Use Flip for the transport protocol instead of HTTP. +// This is a temporary testing flag. +const char kUseFlip[] = "use-flip"; + // Use the low fragmentation heap for the CRT. const char kUseLowFragHeapCrt[] = "use-lf-heap"; @@ -607,10 +611,6 @@ const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; // Causes the process to run as a renderer zygote. const char kZygoteProcess[] = "zygote"; -// 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_CHROMEOS) // The name of the pipe over which the Chrome OS login manager will send // single-sign-on cookies. |