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

Unified Diff: net/proxy/proxy_service.cc

Issue 11885009: Improve performance of proxy resolver by tracing DNS dependencies. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address mmneke comments 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_service.cc
diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
index 55088f3aa64e92cb24631c57aee5da329180f417..e7005c4c277554ffd283866f89f178b8003e805f 100644
--- a/net/proxy/proxy_service.cc
+++ b/net/proxy/proxy_service.cc
@@ -28,7 +28,6 @@
#include "net/proxy/proxy_resolver.h"
#include "net/proxy/proxy_script_decider.h"
#include "net/proxy/proxy_script_fetcher.h"
-#include "net/proxy/sync_host_resolver_bridge.h"
#include "net/url_request/url_request_context.h"
#if defined(OS_WIN)
@@ -195,12 +194,6 @@ class ProxyResolverNull : public ProxyResolver {
return LOAD_STATE_IDLE;
}
- virtual LoadState GetLoadStateThreadSafe(
- RequestHandle request) const OVERRIDE {
- NOTREACHED();
- return LOAD_STATE_IDLE;
- }
-
virtual void CancelSetPacScript() OVERRIDE {
NOTREACHED();
}
@@ -238,12 +231,6 @@ class ProxyResolverFromPacString : public ProxyResolver {
return LOAD_STATE_IDLE;
}
- virtual LoadState GetLoadStateThreadSafe(
- RequestHandle request) const OVERRIDE {
- NOTREACHED();
- return LOAD_STATE_IDLE;
- }
-
virtual void CancelSetPacScript() OVERRIDE {
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698