diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 6 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 4204e27..3a32417 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -427,10 +427,10 @@ const wchar_t kRendererCmdPrefix[] = L"renderer-cmd-prefix"; // On POSIX only: the contents of this flag are prepended to the utility // process command line. Useful values might be "valgrind" or "xterm -e gdb // --args". -const wchar_t kUtilityCmdPrefix[] = L"utility-cmd-prefix"; +const wchar_t kUtilityCmdPrefix[] = L"utility-cmd-prefix"; -// Temparary option for new ftp implemetation. -const wchar_t kNewFtp[] = L"new-ftp"; +// On Windows only: use the old WinInet-based ftp implemetation. +const wchar_t kWininetFtp[] = L"wininet-ftp"; // Enable Native Web Worker support const wchar_t kEnableNativeWebWorkers[] = L"enable-native-web-workers"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index e3ff1a9..28426be 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -160,7 +160,7 @@ extern const wchar_t kRendererCmdPrefix[]; extern const wchar_t kUtilityCmdPrefix[]; -extern const wchar_t kNewFtp[]; +extern const wchar_t kWininetFtp[]; extern const wchar_t kEnableNativeWebWorkers[]; extern const wchar_t kWebWorkerProcessPerCore[]; |