Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Unified Diff: chrome/browser/io_thread.cc

Issue 3014013: Negotiate on by default on all platforms. (Closed)
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index b3ddabc9da792b78d22f4b4b20e261f75c51c3fe..b0e27b2bc2911e966e520146d9efd5e1b104e8f7 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(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698