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

Unified Diff: net/proxy/proxy_resolver_mac.cc

Issue 8373014: Add new text for indicating we are resolving hosts during proxy resolution. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: win/mac Created 9 years, 2 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_mac.cc
diff --git a/net/proxy/proxy_resolver_mac.cc b/net/proxy/proxy_resolver_mac.cc
index 935f6fb18c438af4dcfa524f17c8380cd96b0553..cca397f3df3be28b61d31db55a67b5f493cc4aec 100644
--- a/net/proxy/proxy_resolver_mac.cc
+++ b/net/proxy/proxy_resolver_mac.cc
@@ -187,6 +187,17 @@ void ProxyResolverMac::CancelRequest(RequestHandle request) {
NOTREACHED();
}
+LoadState ProxyResolverMac::GetLoadState(RequestHandle request) const {
+ NOTREACHED();
+ return LOAD_STATE_IDLE;
+}
+
+LoadState ProxyResolverMac::GetLoadStateThreadSafe(
+ RequestHandle request) const {
+ NOTREACHED();
eroman 2011/11/07 21:52:01 This could cause DCHECKs in debug builds, of thing
willchan no longer on Chromium 2011/11/07 23:23:39 Done.
+ return LOAD_STATE_IDLE;
+}
+
void ProxyResolverMac::CancelSetPacScript() {
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698