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

Unified Diff: net/proxy/proxy_info.h

Issue 502068: Remove the implicit fallback to DIRECT when proxies fail. This better matches... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fix a comment typo Created 10 years, 12 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_info.h
===================================================================
--- net/proxy/proxy_info.h (revision 35522)
+++ net/proxy/proxy_info.h (working copy)
@@ -43,9 +43,20 @@
}
// Returns true if this proxy info specifies a direct connection.
- bool is_direct() const { return proxy_list_.Get().is_direct(); }
+ bool is_direct() const {
+ // We don't implicitly fallback to DIRECT unless it was added to the list.
wtc 2010/01/07 20:12:27 Why don't you change ProxyList::Get() to do the ri
eroman 2010/01/07 21:08:19 I don't understand what you mean by this.
wtc 2010/01/07 21:22:09 Right now, you're asking the caller to call ProxyL
+ if (is_empty())
+ return false;
+ return proxy_list_.Get().is_direct();
+ }
- // Returns the first valid proxy server.
+ // Returns true if this proxy info has no proxies left to try.
+ bool is_empty() const {
+ return proxy_list_.IsEmpty();
+ }
+
+ // Returns the first valid proxy server. is_empty() must be false to be able
+ // to call this function.
ProxyServer proxy_server() const { return proxy_list_.Get(); }
// See description in ProxyList::ToPacString().
@@ -70,17 +81,12 @@
private:
friend class ProxyService;
- // If proxy_list_ is set to empty, then a "direct" connection is indicated.
+ // The ordered list of proxy servers (including DIRECT attempts) remaining to
wtc 2010/01/07 20:12:27 Nit: the word "attempts" is confusing. You can ju
+ // try. If proxy_list_ is empty, then there is nothing left to fall back to.
ProxyList proxy_list_;
// This value identifies the proxy config used to initialize this object.
ProxyConfig::ID config_id_;
-
- // This flag is false when the proxy configuration was known to be bad when
- // this proxy info was initialized. In such cases, we know that if this
- // proxy info does not yield a connection that we might want to reconsider
- // the proxy config given by config_id_.
- bool config_was_tried_;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698