Index: net/proxy/proxy_retry_info.h |
diff --git a/net/proxy/proxy_retry_info.h b/net/proxy/proxy_retry_info.h |
index a36fcd9ccb80c543a4c0cda95960aa2b012a3213..512609c347c45ffdcd24f87ee1a34381defe8ae7 100644 |
--- a/net/proxy/proxy_retry_info.h |
+++ b/net/proxy/proxy_retry_info.h |
@@ -8,12 +8,13 @@ |
#include <map> |
#include "base/time/time.h" |
+#include "net/base/net_errors.h" |
Ryan Sleevi
2014/08/18 05:51:12
Don't include this, and init to zero.
|
namespace net { |
// Contains the information about when to retry a proxy server. |
struct ProxyRetryInfo { |
- ProxyRetryInfo() : try_while_bad(true) {} |
+ ProxyRetryInfo() : try_while_bad(true), net_error(OK) {} |
// We should not retry until this time. |
base::TimeTicks bad_until; |