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

Unified Diff: chrome/browser/resources/net_internals/quic_view.html

Issue 293763002: Improve the content displayed at chrome://net-internals/#quic (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | net/quic/quic_client_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/quic_view.html
diff --git a/chrome/browser/resources/net_internals/quic_view.html b/chrome/browser/resources/net_internals/quic_view.html
index aafca2fefb62285590a8600c6bc8fd7ace54a0eb..3407789252bd0e22a8e3966313e5560adba5c7dc 100644
--- a/chrome/browser/resources/net_internals/quic_view.html
+++ b/chrome/browser/resources/net_internals/quic_view.html
@@ -21,9 +21,13 @@
<th>Secure</th>
<th>Version</th>
<th>Peer address</th>
- <th>GUID</th>
+ <th>Connection UID</th>
+ <th>Active stream count</th>
<th>Active streams</th>
- <th>Total streams</th>
+ <th>Total stream count</th>
+ <th>Packets Sent</th>
+ <th>Packets Lost</th>
+ <th>Packets Received</th>
<th>Connected</th>
</tr>
</thead>
@@ -33,9 +37,13 @@
<td jscontent="!!secure"></td>
<td jscontent="version"></td>
<td jscontent="peer_address"></td>
- <td jscontent="guid"></td>
+ <td jscontent="connection_id"></td>
<td jscontent="open_streams"></td>
+ <td jscontent="$this.active_streams && $this.active_streams.length > 0 ? $this.active_streams.join(', ') : 'None'"></td>
<td jscontent="total_streams"></td>
+ <td jscontent="packets_sent"></td>
+ <td jscontent="packets_lost"></td>
+ <td jscontent="packets_received"></td>
<td jscontent="connected"></td>
</tr>
</tbody>
« no previous file with comments | « no previous file | net/quic/quic_client_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698