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/proxy/proxy_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: that's what she said 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/proxy_resolver.h
diff --git a/net/proxy/proxy_resolver.h b/net/proxy/proxy_resolver.h
index 6b634075cbb7a3e9bbe4913e72e79998afefdc37..9d3387a80ebbaeaa18cdf283fa38468b7df9cafc 100644
--- a/net/proxy/proxy_resolver.h
+++ b/net/proxy/proxy_resolver.h
@@ -52,9 +52,6 @@ class NET_EXPORT_PRIVATE ProxyResolver {
// Gets the LoadState for |request|.
virtual LoadState GetLoadState(RequestHandle request) const = 0;
- // Gets the LoadState for |request|. May be called from another thread.
- virtual LoadState GetLoadStateThreadSafe(RequestHandle request) const = 0;
-
// The PAC script backend can be specified to the ProxyResolver either via
// URL, or via the javascript text itself. If |expects_pac_bytes| is true,
// then the ProxyResolverScriptData passed to SetPacScript() should
@@ -75,10 +72,6 @@ class NET_EXPORT_PRIVATE ProxyResolver {
const scoped_refptr<ProxyResolverScriptData>& pac_script,
const net::CompletionCallback& callback) = 0;
- // Optional shutdown code to be run before destruction. This is only used
- // by the multithreaded runner to signal cleanup from origin thread
- virtual void Shutdown() {}
-
private:
const bool expects_pac_bytes_;

Powered by Google App Engine
This is Rietveld 408576698