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

Unified Diff: net/base/host_resolver.h

Issue 10386120: Utility to resolve an hostname using Chromium's code in net/dns (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 7 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 | « no previous file | net/base/host_resolver_impl.cc » ('j') | net/base/host_resolver_impl.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/host_resolver.h
diff --git a/net/base/host_resolver.h b/net/base/host_resolver.h
index 300bd34dd519ece9055dc2a89c37f94658a360a4..836f69f4c3b64dd1b7176be569c05765d7fe6556 100644
--- a/net/base/host_resolver.h
+++ b/net/base/host_resolver.h
@@ -27,6 +27,7 @@ class BoundNetLog;
class HostCache;
class HostResolverProc;
class NetLog;
+class DnsConfigService;
// This class represents the task of resolving hostnames (or IP address
// literal) to an AddressList object.
@@ -204,6 +205,14 @@ NET_EXPORT HostResolver* CreateNonCachingSystemHostResolver(
NET_EXPORT HostResolver* CreateAsyncHostResolver(size_t max_concurrent_resolves,
size_t max_retry_attempts,
NetLog* net_log);
+
+NET_EXPORT HostResolver* CreateHostResolver(
szym 2012/05/14 18:48:32 I think you should just |#include "net/base/host_r
Daniele 2012/05/17 23:04:34 Done.
+ size_t max_concurrent_resolves,
+ size_t max_retry_attempts,
+ HostCache* cache,
+ scoped_ptr<DnsConfigService> config_service,
+ NetLog* net_log);
+
} // namespace net
#endif // NET_BASE_HOST_RESOLVER_H_
« no previous file with comments | « no previous file | net/base/host_resolver_impl.cc » ('j') | net/base/host_resolver_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698