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

Unified Diff: net/http/http_auth_controller.cc

Issue 2883031: Kerberos authentication backoff cleanup. (Closed)
Patch Set: Refactored the unit tests. 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 | net/http/http_auth_handler_negotiate_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_controller.cc
diff --git a/net/http/http_auth_controller.cc b/net/http/http_auth_controller.cc
index e4196badbd9eb39c505aad28fd3b37b3d92e09c7..c077ee84d5cdbbc8e3c0c41241f4b23bed45153f 100644
--- a/net/http/http_auth_controller.cc
+++ b/net/http/http_auth_controller.cc
@@ -88,7 +88,7 @@ int HttpAuthController::MaybeGenerateAuthToken(const HttpRequestInfo* request,
&auth_token_);
if (rv == ERR_IO_PENDING)
user_callback_ = callback;
- if (rv != ERR_IO_PENDING)
+ else
OnIOComplete(rv);
// This error occurs with GSSAPI, if the user has not already logged in.
if (rv == ERR_MISSING_AUTH_CREDENTIALS)
@@ -342,7 +342,7 @@ void HttpAuthController::OnIOComplete(int result) {
// In that case, disable the current scheme as it cannot succeed.
if (result == ERR_MISSING_AUTH_CREDENTIALS) {
DisableAuthScheme(handler_->scheme());
- auth_token_.erase();
+ auth_token_.clear();
result = OK;
}
if (user_callback_) {
« no previous file with comments | « no previous file | net/http/http_auth_handler_negotiate_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698