diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-06 21:44:24 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-06 21:44:24 +0000 |
commit | 9ae005b89f8e5a47a610bc518bfa13a609ef9dff (patch) | |
tree | 56d99370e1c03a40444744f57d7fd56514307aea /net | |
parent | cc9986bd6a4a9bebf224b3516eaf8ede3562c30d (diff) | |
download | chromium_src-9ae005b89f8e5a47a610bc518bfa13a609ef9dff.zip chromium_src-9ae005b89f8e5a47a610bc518bfa13a609ef9dff.tar.gz chromium_src-9ae005b89f8e5a47a610bc518bfa13a609ef9dff.tar.bz2 |
net: add (www.)grc.com to HSTS preloaded list.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198547 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/http/transport_security_state_static.h | 2 | ||||
-rw-r--r-- | net/http/transport_security_state_static.json | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/net/http/transport_security_state_static.h b/net/http/transport_security_state_static.h index caad04e5..032e591 100644 --- a/net/http/transport_security_state_static.h +++ b/net/http/transport_security_state_static.h @@ -799,6 +799,8 @@ static const struct HSTSPreload kPreloadedSTS[] = { {16, false, "\003api\006simple\003com", true, kNoPins, DOMAIN_NOT_PINNED }, {11, true, "\005bassh\003net", true, kNoPins, DOMAIN_NOT_PINNED }, {10, true, "\004sah3\003net", true, kNoPins, DOMAIN_NOT_PINNED }, + {9, false, "\003grc\003com", true, kNoPins, DOMAIN_NOT_PINNED }, + {13, false, "\003www\003grc\003com", true, kNoPins, DOMAIN_NOT_PINNED }, }; static const size_t kNumPreloadedSTS = ARRAYSIZE_UNSAFE(kPreloadedSTS); diff --git a/net/http/transport_security_state_static.json b/net/http/transport_security_state_static.json index 954041b..4c61509 100644 --- a/net/http/transport_security_state_static.json +++ b/net/http/transport_security_state_static.json @@ -589,6 +589,8 @@ { "name": "api.simple.com", "mode": "force-https" }, { "name": "bassh.net", "include_subdomains": true, "mode": "force-https" }, { "name": "sah3.net", "include_subdomains": true, "mode": "force-https" }, + { "name": "grc.com", "mode": "force-https" }, + { "name": "www.grc.com", "mode": "force-https" }, // Entries that are only valid if the client supports SNI. { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": true }, |