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

Unified Diff: net/proxy/proxy_retry_info.h

Issue 485603002: [gcc 4.8] Explicitly initialize net_error in ProxyRetryInfo to fix build failure (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..b65f6f5f76b615729d7622b451c39d4e653c7395 100644
--- a/net/proxy/proxy_retry_info.h
+++ b/net/proxy/proxy_retry_info.h
@@ -13,7 +13,7 @@ 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(0) {}
// We should not retry until this time.
base::TimeTicks bad_until;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698