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

Unified Diff: net/dns/host_resolver_mojo.h

Issue 862813002: WIP: Prototype OOP V8 PAC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Slight cleanup and report JS memory usage. Created 5 years, 11 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/host_resolver.mojom ('k') | net/dns/host_resolver_mojo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/host_resolver_mojo.h
diff --git a/net/dns/host_resolver_mojo.h b/net/dns/host_resolver_mojo.h
new file mode 100644
index 0000000000000000000000000000000000000000..22c7805e9087aaa2fda73877937d2f3afc9deead
--- /dev/null
+++ b/net/dns/host_resolver_mojo.h
@@ -0,0 +1,72 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_DNS_HOST_RESOLVER_MOJO_H_
+#define NET_DNS_HOST_RESOLVER_MOJO_H_
+
+#include <map>
+
+#include "base/basictypes.h"
+#include "base/gtest_prod_util.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/scoped_vector.h"
+#include "base/memory/weak_ptr.h"
+#include "base/threading/non_thread_safe.h"
+#include "base/time/time.h"
+#include "net/base/net_export.h"
+#include "net/base/network_change_notifier.h"
+#include "net/dns/host_cache.h"
+#include "net/dns/host_resolver.h"
+#include "net/dns/host_resolver.mojom.h"
+
+namespace net {
+
+class BoundNetLog;
+class DnsClient;
+class NetLog;
+
+class NET_EXPORT HostResolverMojo
+ : public HostResolver,
+ NON_EXPORTED_BASE(public base::NonThreadSafe) {
+ public:
+ explicit HostResolverMojo(dns::ResolverPtr resolver);
+ ~HostResolverMojo();
+
+ int Resolve(const RequestInfo& info,
+ RequestPriority priority,
+ AddressList* addresses,
+ const CompletionCallback& callback,
+ RequestHandle* out_req,
+ const BoundNetLog& source_net_log) override;
+ int ResolveFromCache(const RequestInfo& info,
+ AddressList* addresses,
+ const BoundNetLog& source_net_log) override;
+ void CancelRequest(RequestHandle req) override;
+
+ private:
+ class Job;
+
+ dns::ResolverPtr resolver_;
+
+ DISALLOW_COPY_AND_ASSIGN(HostResolverMojo);
+};
+
+} // namespace net
+
+namespace mojo {
+
+template <>
+struct TypeConverter<net::dns::RequestInfoPtr, net::HostResolver::RequestInfo> {
+ static net::dns::RequestInfoPtr Convert(
+ const net::HostResolver::RequestInfo& obj);
+};
+
+template <>
+struct TypeConverter<net::AddressList, net::dns::AddressList> {
+ static net::AddressList Convert(const net::dns::AddressList& obj);
+};
+
+} // namespace mojo
+
+#endif // NET_DNS_HOST_RESOLVER_MOJO_H_
« no previous file with comments | « net/dns/host_resolver.mojom ('k') | net/dns/host_resolver_mojo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698