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

Unified Diff: net/http/transport_security_state.cc

Issue 13390007: Adding preloaded pin and HSTS for Chrome Dev Tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make the hostname char array large enough Created 7 years, 9 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 | net/http/transport_security_state_static.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/transport_security_state.cc
diff --git a/net/http/transport_security_state.cc b/net/http/transport_security_state.cc
index 08d1f8ac5c8ee6e449bb80d4738ca3b03cb1e50a..3fb95dde9a30666d7ca20abd212c06be775ed026 100644
--- a/net/http/transport_security_state.cc
+++ b/net/http/transport_security_state.cc
@@ -541,7 +541,7 @@ struct PublicKeyPins {
struct HSTSPreload {
uint8 length;
bool include_subdomains;
- char dns_name[34];
+ char dns_name[38];
cbentzel 2013/04/30 18:28:09 Curious: Do long names trigger compile-time warnin
palmer 2013/04/30 18:33:09 Yep. (Thankfully.)
bool https_required;
PublicKeyPins pins;
SecondLevelDomainName second_level_domain_name;
« no previous file with comments | « no previous file | net/http/transport_security_state_static.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698