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

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

Issue 18554002: Distinguish STS observation times from PKP observation times. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Thanks to wtc for a nice loop. Created 7 years 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 663248dda1cbf3f3cc4d84b9cabf0f46374650c6..5378b7ec2cca503a8308db76d4eaf13134b753a4 100644
--- a/chrome/browser/resources/net_internals/hsts_view.js
+++ b/chrome/browser/resources/net_internals/hsts_view.js
@@ -131,6 +131,16 @@ var HSTSView = (function() {
t = addNode(this.queryOutputDiv_, 'tt');
t.textContent = result.pkp_subdomains;
+ addTextNode(this.queryOutputDiv_, ' sts_observed:');
+
+ t = addNode(this.queryOutputDiv_, 'tt');
eroman 2013/12/18 01:21:58 you can combine this with: addNodeWithText(this.q
palmer 2013/12/18 18:15:44 I'll add a TODO(palmer) to do it later in a clean-
+ t.textContent = result.sts_observed;
+
+ addTextNode(this.queryOutputDiv_, ' pkp_observed:');
+
+ t = addNode(this.queryOutputDiv_, 'tt');
+ t.textContent = result.pkp_observed;
+
addTextNode(this.queryOutputDiv_, ' domain:');
t = addNode(this.queryOutputDiv_, 'tt');
« 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