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

Unified Diff: net/http/http_auth_handler.cc

Issue 10534129: NetLogEventParameter to Callback refactoring 5. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add back original URLs Created 8 years, 6 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_cache_transaction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_handler.cc
===================================================================
--- net/http/http_auth_handler.cc (revision 141814)
+++ net/http/http_auth_handler.cc (working copy)
@@ -69,7 +69,7 @@
DCHECK(auth_token != NULL);
DCHECK(callback_.is_null());
callback_ = callback;
- net_log_.BeginEvent(EventTypeFromAuthTarget(target_), NULL);
+ net_log_.BeginEvent(EventTypeFromAuthTarget(target_));
int rv = GenerateAuthTokenImpl(
credentials, request,
base::Bind(&HttpAuthHandler::OnGenerateAuthTokenComplete,
@@ -101,7 +101,7 @@
void HttpAuthHandler::FinishGenerateAuthToken() {
// TOOD(cbentzel): Should this be done in OK case only?
- net_log_.EndEvent(EventTypeFromAuthTarget(target_), NULL);
+ net_log_.EndEvent(EventTypeFromAuthTarget(target_));
callback_.Reset();
}
« no previous file with comments | « no previous file | net/http/http_cache_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698