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

Unified Diff: netlog_viewer/spdy_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/spdy_view.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/spdy_view.js
diff --git a/netlog_viewer/spdy_view.js b/netlog_viewer/spdy_view.js
index d07b2795d61f49389bdb8b380cc623b8c2a5a5eb..ca631131eb988351d86dd1dcfbd8fcba999d6c1d 100644
--- a/netlog_viewer/spdy_view.js
+++ b/netlog_viewer/spdy_view.js
@@ -32,7 +32,16 @@ var SpdyView = (function() {
// IDs for special HTML elements in spdy_view.html
SpdyView.MAIN_BOX_ID = 'spdy-view-tab-content';
SpdyView.STATUS_ID = 'spdy-view-status';
+ SpdyView.STATUS_HTTP2_ENABLED = 'spdy-view-http2-enabled';
+ SpdyView.STATUS_SPDY31_ENABLED = 'spdy-view-spdy31-enabled';
+ SpdyView.STATUS_ALTERNATE_SERVICE = 'spdy-view-alternate-service';
+ SpdyView.STATUS_ALPN_PROTOCOLS = 'spdy-view-alpn-protocols';
+ SpdyView.STATUS_NPN_PROTOCOLS = 'spdy-view-npn-protocols';
SpdyView.SESSION_INFO_ID = 'spdy-view-session-info';
+ SpdyView.SESSION_INFO_CONTENT_ID = 'spdy-view-session-info-content';
+ SpdyView.SESSION_INFO_NO_CONTENT_ID =
+ 'spdy-view-session-info-no-content';
+ SpdyView.SESSION_INFO_TBODY_ID = 'spdy-view-session-info-tbody';
cr.addSingletonGetter(SpdyView);
@@ -52,9 +61,45 @@ var SpdyView = (function() {
onSpdySessionInfoChanged: function(spdySessionInfo) {
if (!spdySessionInfo)
return false;
- // TODO(rayraymond): Update DOM without use of jstemplate.
- // var input = new JsEvalContext({ spdySessionInfo: spdySessionInfo });
- // jstProcess(input, $(SpdyView.SESSION_INFO_ID));
+
+ var hasSpdySessionInfo = spdySessionInfo && spdySessionInfo.length > 0;
+
+ setNodeDisplay($(SpdyView.SESSION_INFO_CONTENT_ID), hasSpdySessionInfo);
+ setNodeDisplay($(SpdyView.SESSION_INFO_NO_CONTENT_ID),
+ !hasSpdySessionInfo);
+
+ var tbody = $(SpdyView.SESSION_INFO_TBODY_ID);
+ tbody.innerHTML = '';
+
+ // Fill in the sessions info table.
+ for (var i = 0; i < spdySessionInfo.length; ++i) {
+ var s = spdySessionInfo[i];
+ var tr = addNode(tbody, 'tr');
+
+ var hostCell = addNode(tr, 'td');
+ addNodeWithText(hostCell, 'span', s.host_port_pair);
+ addNodeWithText(hostCell, 'span',
+ s.aliases ? ' ' + s.aliases.join(' ') : '');
+
+ addNodeWithText(tr, 'td', s.proxy);
+
+ var idCell = addNode(tr, 'td');
+ var a = addNodeWithText(idCell, 'a', s.source_id);
+ a.href = '#events&q=id:' + s.source_id;
+
+ var kFields = ['protocol_negotiated', 'active_streams',
+ 'unclaimed_pushed_streams', 'max_concurrent_streams',
+ 'streams_initiated_count', 'streams_pushed_count',
+ 'streams_pushed_and_claimed_count',
+ 'streams_abandoned_count', 'frames_received', 'is_secure',
+ 'sent_settings', 'received_settings', 'send_window_size',
+ 'recv_window_size', 'unacked_recv_window_bytes', 'error'];
+
+ for (var fieldIndex = 0; fieldIndex < kFields.length; ++fieldIndex) {
+ addNodeWithText(tr, 'td', s[kFields[fieldIndex]]);
+ }
+ }
+
return true;
},
@@ -64,9 +109,26 @@ var SpdyView = (function() {
onSpdyStatusChanged: function(spdyStatus) {
if (!spdyStatus)
return false;
- // TODO(rayraymond): Update DOM without use of jstemplate.
- // var input = new JsEvalContext(spdyStatus);
- // jstProcess(input, $(SpdyView.STATUS_ID));
+
+ $(SpdyView.STATUS_HTTP2_ENABLED).textContent =
+ (spdyStatus.enable_http2 == undefined ?
+ spdyStatus.spdy_enabled : spdyStatus.enable_http2);
+
+ $(SpdyView.STATUS_SPDY31_ENABLED).textContent =
+ (spdyStatus.enable_spdy31 == undefined ?
+ spdyStatus.spdy_enabled : spdyStatus.enable_spdy31);
+
+ $(SpdyView.STATUS_ALTERNATE_SERVICE).textContent =
+ (spdyStatus.use_alternative_services == undefined ?
+ spdyStatus.use_alternate_protocols :
+ spdyStatus.use_alternative_services);
+
+ $(SpdyView.STATUS_ALPN_PROTOCOLS).textContent =
+ (spdyStatus.alpn_protos || spdyStatus.next_protos);
+
+ $(SpdyView.STATUS_NPN_PROTOCOLS).textContent =
+ (spdyStatus.npn_protos || spdyStatus.next_protos);
+
return true;
}
};
« no previous file with comments | « netlog_viewer/spdy_view.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698