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

Unified Diff: net/dns/dns_session.h

Issue 9369045: [net] HostResolverImpl + DnsTransaction + DnsConfigService = Asynchronous DNS ready for experiments. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Denitted. Created 8 years, 10 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/dns/dns_response_unittest.cc ('k') | net/dns/dns_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/dns_session.h
diff --git a/net/dns/dns_session.h b/net/dns/dns_session.h
index 85aea0ae12a28efb99ab1e766642b98bfda23642..aa070acdae1b068d5e76b6e6f8c02efe093321d6 100644
--- a/net/dns/dns_session.h
+++ b/net/dns/dns_session.h
@@ -34,7 +34,7 @@ class NET_EXPORT_PRIVATE DnsSession
const DnsConfig& config() const { return config_; }
NetLog* net_log() const { return net_log_; }
- ClientSocketFactory* socket_factory() { return socket_factory_.get(); }
+ ClientSocketFactory* socket_factory() { return socket_factory_; }
// Return the next random query ID.
int NextQueryId() const;
@@ -50,7 +50,7 @@ class NET_EXPORT_PRIVATE DnsSession
~DnsSession();
const DnsConfig config_;
- scoped_ptr<ClientSocketFactory> socket_factory_;
+ ClientSocketFactory* socket_factory_;
RandCallback rand_callback_;
NetLog* net_log_;
« no previous file with comments | « net/dns/dns_response_unittest.cc ('k') | net/dns/dns_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698