diff options
author | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 02:30:49 +0000 |
---|---|---|
committer | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 02:30:49 +0000 |
commit | 9bc3b4a5491dbb074d505d4d39a178b76ef28321 (patch) | |
tree | 1f0b40c66700c349e37137eceab0063125706c05 | |
parent | bdb7ff6f3d14ea2c252f1946ea200326acc047e9 (diff) | |
download | chromium_src-9bc3b4a5491dbb074d505d4d39a178b76ef28321.zip chromium_src-9bc3b4a5491dbb074d505d4d39a178b76ef28321.tar.gz chromium_src-9bc3b4a5491dbb074d505d4d39a178b76ef28321.tar.bz2 |
Negotiate on by default on all platforms.
BUG=33033
TEST=Run chrome on POSIX plaforms without explicitly turning on Negotiate.
Review URL: http://codereview.chromium.org/3014013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52987 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/io_thread.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc index b3ddabc..b0e27b2 100644 --- a/chrome/browser/io_thread.cc +++ b/chrome/browser/io_thread.cc @@ -274,11 +274,8 @@ net::HttpAuthHandlerFactory* IOThread::CreateDefaultAuthHandlerFactory( } // Set the flag that enables or disables the Negotiate auth handler. -#if defined(OS_WIN) static const bool kNegotiateAuthEnabledDefault = true; -#else - static const bool kNegotiateAuthEnabledDefault = false; -#endif + bool negotiate_auth_enabled = kNegotiateAuthEnabledDefault; if (command_line.HasSwitch(switches::kExperimentalEnableNegotiateAuth)) { std::string enable_negotiate_auth = command_line.GetSwitchValueASCII( |