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

Unified Diff: net/http/http_auth_handler_unittest.cc

Issue 9585026: Add a source id to global NetLog entries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Move friend declaration Created 8 years, 9 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
Index: net/http/http_auth_handler_unittest.cc
===================================================================
--- net/http/http_auth_handler_unittest.cc (revision 126703)
+++ net/http/http_auth_handler_unittest.cc (working copy)
@@ -38,7 +38,8 @@
challenge.begin(), challenge.end());
HttpAuthHandlerMock mock_handler;
CapturingNetLog capturing_net_log(CapturingNetLog::kUnbounded);
- BoundNetLog bound_net_log(source, &capturing_net_log);
+ BoundNetLog bound_net_log(BoundNetLog::Make(&capturing_net_log,
+ net::NetLog::SOURCE_NONE));
mock_handler.InitFromChallenge(&tokenizer, target,
origin, bound_net_log);

Powered by Google App Engine
This is Rietveld 408576698