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

Unified Diff: netlog_viewer/sdch_view.js

Issue 2178423002: Bring the gh-pages branch up to date with the master branch (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Created 4 years, 5 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 | « netlog_viewer/sdch_view.html ('k') | netlog_viewer/sockets_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/sdch_view.js
diff --git a/netlog_viewer/sdch_view.js b/netlog_viewer/sdch_view.js
index 59ac07bea8886e3b718adeec36a5db691a035958..1dd40e46b8eebc9517c5065e7a1e3b37c6b08828 100644
--- a/netlog_viewer/sdch_view.js
+++ b/netlog_viewer/sdch_view.js
@@ -34,8 +34,9 @@ var SdchView = (function() {
SdchView.MAIN_BOX_ID = 'sdch-view-tab-content';
SdchView.SDCH_ENABLED_SPAN_ID = 'sdch-view-sdch-enabled';
SdchView.SECURE_SCHEME_SUPPORT_SPAN_ID = 'sdch-view-secure-scheme-support';
- SdchView.BLACKLIST_TBODY_ID = 'sdch-view-blacklist-body';
- SdchView.DICTIONARIES_TBODY_ID = 'sdch-view-dictionaries-body';
+ SdchView.BLACKLIST_TBODY_ID = 'sdch-view-blacklist-tbody';
+ SdchView.NUM_DICTIONARIES_LOADED_ID = 'sdch-view-num-dictionaries-loaded';
+ SdchView.DICTIONARIES_TBODY_ID = 'sdch-view-dictionaries-tbody';
cr.addSingletonGetter(SdchView);
@@ -50,9 +51,43 @@ var SdchView = (function() {
onSdchInfoChanged: function(sdchInfo) {
if (!sdchInfo || typeof(sdchInfo.sdch_enabled) === 'undefined')
return false;
- // TODO(rayraymond): Update DOM without use of jstemplate.
- // var input = new JsEvalContext(sdchInfo);
- // jstProcess(input, $(SdchView.MAIN_BOX_ID));
+
+ $(SdchView.SDCH_ENABLED_SPAN_ID).textContent =
+ !!sdchInfo.sdch_enabled;
+
+ $(SdchView.NUM_DICTIONARIES_LOADED_ID).textContent =
+ sdchInfo.dictionaries.length;
+
+ var tbodyDictionaries = $(SdchView.DICTIONARIES_TBODY_ID);
+ tbodyDictionaries.innerHTML = '';
+
+ // Fill in the dictionaries table.
+ for (var i = 0; i < sdchInfo.dictionaries.length; ++i) {
+ var d = sdchInfo.dictionaries[i];
+ var tr = addNode(tbodyDictionaries, 'tr');
+
+ addNodeWithText(tr, 'td', d.domain);
+ addNodeWithText(tr, 'td', d.path);
+ addNodeWithText(tr, 'td',
+ d.ports ? d.ports.join(', ') : '');
+ addNodeWithText(tr, 'td', d.server_hash);
+ addNodeWithText(tr, 'td', d.client_hash);
+ addNodeWithText(tr, 'td', d.url);
+ }
+
+ var tbodyBlacklist = $(SdchView.BLACKLIST_TBODY_ID);
+ tbodyBlacklist.innerHTML = '';
+
+ // Fill in the blacklisted table.
+ for (var i = 0; i < sdchInfo.blacklisted.length; ++i) {
+ var b = sdchInfo.blacklisted[i];
+ var tr = addNode(tbodyBlacklist, 'tr');
+
+ addNodeWithText(tr, 'td', d.domain);
+ addNodeWithText(tr, 'td', d.sdchProblemCodeToString(reason));
+ addNodeWithText(tr, 'td', d.tries);
+ }
+
return true;
},
};
« no previous file with comments | « netlog_viewer/sdch_view.html ('k') | netlog_viewer/sockets_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698