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

Unified Diff: net/proxy/sync_host_resolver.h

Issue 11885009: Improve performance of proxy resolver by tracing DNS dependencies. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: whitespace changes Created 7 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
Index: net/proxy/sync_host_resolver.h
diff --git a/net/proxy/sync_host_resolver.h b/net/proxy/sync_host_resolver.h
deleted file mode 100644
index 153dfad2a8c510b8a4a19da4fb254ff537d405cc..0000000000000000000000000000000000000000
--- a/net/proxy/sync_host_resolver.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// 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_PROXY_SYNC_HOST_RESOLVER_H_
-#define NET_PROXY_SYNC_HOST_RESOLVER_H_
-
-#include "net/base/host_resolver.h"
-#include "net/base/net_export.h"
-
-namespace net {
-
-class BoundNetLog;
-
-// Interface used by ProxyResolverJSBindings to abstract a synchronous host
-// resolver module (which includes a Shutdown method).
-class NET_EXPORT_PRIVATE SyncHostResolver {
- public:
- virtual ~SyncHostResolver() {}
-
- virtual int Resolve(const HostResolver::RequestInfo& info,
- AddressList* addresses,
- const BoundNetLog& net_log) = 0;
-
- // Optionally aborts any blocking resolves that are in progress.
- virtual void Shutdown() = 0;
-};
-
-} // namespace net
-
-#endif // NET_PROXY_SYNC_HOST_RESOLVER_H_

Powered by Google App Engine
This is Rietveld 408576698