Index: net/dns/dns_client.cc |
diff --git a/net/dns/dns_client.cc b/net/dns/dns_client.cc |
index 9e29ca4265d0a5c2332cbfcb0e371bc5d222f56c..eee0008fa662f87c2a88f186efb698e11b033f66 100644 |
--- a/net/dns/dns_client.cc |
+++ b/net/dns/dns_client.cc |
@@ -32,10 +32,8 @@ class DnsClientImpl : public DnsClient { |
scoped_ptr<DnsSocketPool> socket_pool( |
config.randomize_ports ? DnsSocketPool::CreateDefault(factory) |
: DnsSocketPool::CreateNull(factory)); |
- session_ = new DnsSession(config, |
- socket_pool.Pass(), |
- base::Bind(&base::RandInt), |
- net_log_); |
+ session_ = new DnsSession( |
+ config, socket_pool.Pass(), base::Bind(&base::RandInt), net_log_); |
factory_ = DnsTransactionFactory::CreateFactory(session_.get()); |
} |
} |
@@ -68,4 +66,3 @@ scoped_ptr<DnsClient> DnsClient::CreateClient(NetLog* net_log) { |
} |
} // namespace net |
- |