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

Unified Diff: net/socket/transport_client_socket_pool.cc

Issue 8572018: Remove referrer from TransportSocketParams and SOCKSSocketParams. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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/socket/transport_client_socket_pool.h ('k') | net/socket/transport_client_socket_pool_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/transport_client_socket_pool.cc
diff --git a/net/socket/transport_client_socket_pool.cc b/net/socket/transport_client_socket_pool.cc
index 43276dca6bc2003e46656ddb1ec3c640b3ec8bd8..803e9e9091522aa75d083b8f32de6913095b0475 100644
--- a/net/socket/transport_client_socket_pool.cc
+++ b/net/socket/transport_client_socket_pool.cc
@@ -61,18 +61,15 @@ bool AddressListOnlyContainsIPv6Addresses(const AddressList& addrlist) {
TransportSocketParams::TransportSocketParams(
const HostPortPair& host_port_pair,
RequestPriority priority,
- const GURL& referrer,
bool disable_resolver_cache,
bool ignore_limits)
: destination_(host_port_pair), ignore_limits_(ignore_limits) {
- Initialize(priority, referrer, disable_resolver_cache);
+ Initialize(priority, disable_resolver_cache);
}
TransportSocketParams::~TransportSocketParams() {}
-// TODO(szym): remove unneeded referrer
void TransportSocketParams::Initialize(RequestPriority priority,
- const GURL& referrer,
bool disable_resolver_cache) {
destination_.set_priority(priority);
if (disable_resolver_cache)
« no previous file with comments | « net/socket/transport_client_socket_pool.h ('k') | net/socket/transport_client_socket_pool_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698