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

Unified Diff: content/public/common/resource_response_info.cc

Issue 2325213002: Initialize unintialized field. (Closed)
Patch Set: Created 4 years, 3 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: content/public/common/resource_response_info.cc
diff --git a/content/public/common/resource_response_info.cc b/content/public/common/resource_response_info.cc
index cffb7dbbf3447066b37c49990a88544ee62028d8..872f1ba696809f43bb788fa017b9f30e1961e57e 100644
--- a/content/public/common/resource_response_info.cc
+++ b/content/public/common/resource_response_info.cc
@@ -28,7 +28,8 @@ ResourceResponseInfo::ResourceResponseInfo()
is_using_lofi(false),
effective_connection_type(net::EFFECTIVE_CONNECTION_TYPE_UNKNOWN),
cert_status(0),
- ssl_connection_status(0) {}
+ ssl_connection_status(0),
+ ssl_key_exchange_group(0) {}
ResourceResponseInfo::ResourceResponseInfo(const ResourceResponseInfo& other) =
default;
« 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