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

Unified Diff: net/base/host_resolver_impl.cc

Issue 8220028: Remove the unused source_net_log parameter from ResolveHelper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove the unused source_net_log parameter from ResolveHelper Created 9 years, 2 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 | « net/base/host_resolver_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/host_resolver_impl.cc
===================================================================
--- net/base/host_resolver_impl.cc (revision 104925)
+++ net/base/host_resolver_impl.cc (working copy)
@@ -1159,8 +1159,7 @@
// outstanding jobs map.
Key key = GetEffectiveKeyForRequest(info);
- int rv = ResolveHelper(request_id, key, info, addresses,
- source_net_log, request_net_log);
+ int rv = ResolveHelper(request_id, key, info, addresses, request_net_log);
if (rv != ERR_DNS_CACHE_MISS) {
OnFinishRequest(source_net_log, request_net_log, request_id, info,
rv,
@@ -1201,8 +1200,7 @@
const Key& key,
const RequestInfo& info,
AddressList* addresses,
- const BoundNetLog& request_net_log,
- const BoundNetLog& source_net_log) {
+ const BoundNetLog& request_net_log) {
// The result of |getaddrinfo| for empty hosts is inconsistent across systems.
// On Windows it gives the default interface's address, whereas on Linux it
// gives an error. We will make it fail on all platforms for consistency.
@@ -1237,8 +1235,7 @@
// outstanding jobs map.
Key key = GetEffectiveKeyForRequest(info);
- int rv = ResolveHelper(request_id, key, info, addresses, request_net_log,
- source_net_log);
+ int rv = ResolveHelper(request_id, key, info, addresses, request_net_log);
OnFinishRequest(source_net_log, request_net_log, request_id, info,
rv,
0 /* os_error (unknown since from cache) */);
« no previous file with comments | « net/base/host_resolver_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698