OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_PROXY_PROXY_INFO_H_ | 5 #ifndef NET_PROXY_PROXY_INFO_H_ |
6 #define NET_PROXY_PROXY_INFO_H_ | 6 #define NET_PROXY_PROXY_INFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "net/proxy/proxy_config.h" | 10 #include "net/proxy/proxy_config.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 // This flag is false when the proxy configuration was known to be bad when | 76 // This flag is false when the proxy configuration was known to be bad when |
77 // this proxy info was initialized. In such cases, we know that if this | 77 // this proxy info was initialized. In such cases, we know that if this |
78 // proxy info does not yield a connection that we might want to reconsider | 78 // proxy info does not yield a connection that we might want to reconsider |
79 // the proxy config given by config_id_. | 79 // the proxy config given by config_id_. |
80 bool config_was_tried_; | 80 bool config_was_tried_; |
81 }; | 81 }; |
82 | 82 |
83 } // namespace net | 83 } // namespace net |
84 | 84 |
85 #endif // NET_PROXY_PROXY_INFO_H_ | 85 #endif // NET_PROXY_PROXY_INFO_H_ |
86 | |
OLD | NEW |