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

Unified Diff: chrome/browser/resources/net_internals/hsts_view.js

Issue 826423009: Treat HSTS and HPKP state independently. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rsleevi comments Created 5 years, 11 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 | chrome/browser/ui/webui/net_internals/net_internals_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/hsts_view.js
diff --git a/chrome/browser/resources/net_internals/hsts_view.js b/chrome/browser/resources/net_internals/hsts_view.js
index 76e1dd1eab6e99f572869a2f445abf4bf2bca3a5..2310b9f7907ab6bcf851243e2d1dfce002967d10 100644
--- a/chrome/browser/resources/net_internals/hsts_view.js
+++ b/chrome/browser/resources/net_internals/hsts_view.js
@@ -119,11 +119,14 @@ var HSTSView = (function() {
s.innerHTML = '<b>Found:</b><br/>';
var keys = [
- 'domain', 'static_upgrade_mode', 'static_sts_include_subdomains',
- 'static_pkp_include_subdomains', 'static_sts_observed',
- 'static_pkp_observed', 'static_spki_hashes', 'dynamic_upgrade_mode',
- 'dynamic_sts_include_subdomains', 'dynamic_pkp_include_subdomains',
- 'dynamic_sts_observed', 'dynamic_pkp_observed', 'dynamic_spki_hashes'
+ 'static_sts_domain', 'static_upgrade_mode',
+ 'static_sts_include_subdomains', 'static_sts_observed',
+ 'static_pkp_domain', 'static_pkp_include_subdomains',
+ 'static_pkp_observed', 'static_spki_hashes', 'dynamic_sts_domain',
+ 'dynamic_upgrade_mode', 'dynamic_sts_include_subdomains',
+ 'dynamic_sts_observed', 'dynamic_pkp_domain',
+ 'dynamic_pkp_include_subdomains', 'dynamic_pkp_observed',
+ 'dynamic_spki_hashes',
];
var kStaticHashKeys = [
« no previous file with comments | « no previous file | chrome/browser/ui/webui/net_internals/net_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698