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

Unified Diff: netlog_viewer/sdch_view.html

Issue 2154753002: Serving version 1 of the web app. All code has been copied from the (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Removed some unecessary files. 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/resizable_vertical_split_view.js ('k') | netlog_viewer/sdch_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/sdch_view.html
diff --git a/netlog_viewer/sdch_view.html b/netlog_viewer/sdch_view.html
new file mode 100644
index 0000000000000000000000000000000000000000..446b4654112a0d0f0d79e07f4da3ddac45ffaa77
--- /dev/null
+++ b/netlog_viewer/sdch_view.html
@@ -0,0 +1,70 @@
+<div id=sdch-view-tab-content class=content-box>
+ <ul style="margin-top:0">
+ <li>SDCH Enabled:
+ <span jscontent="!!sdch_enabled" id=sdch-view-sdch-enabled></span>
+ </li>
+ </ul>
+
+ <p>SDCH Errors:
+ <a href="#events&q=type:URL_REQUEST%20SDCH_DECODING_ERROR"
+ style="padding-right:2em">Decoding</a>
+ <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_ERROR">Dictionary</a>
+ </p>
+
+ <p>
+ <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_FETCH">
+ SDCH Dictionary Fetches
+ </a>
+ </p>
+
+ <p>
+ <a href="#events&q=type:URL_REQUEST%20Avail-Dictionary">
+ SDCH Requests
+ </a>
+ </p>
+
+ <h4>
+ Dictionaries loaded: <span jscontent="dictionaries.length"></span>
+ </h4>
+ <table class="styled-table">
+ <thead>
+ <tr>
+ <th>Domain</th>
+ <th>Path</th>
+ <th>Ports</th>
+ <th>Server Hash</th>
+ <th>Client Hash</th>
+ <th>Url</th>
+ </tr>
+ </thead>
+ <tbody id=sdch-view-dictionaries-body>
+ <tr jsselect="dictionaries">
+ <td jscontent="domain"></td>
+ <td jscontent="path"></td>
+ <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
+ <td jscontent="server_hash"></td>
+ <td jscontent="client_hash"></td>
+ <td jscontent="url"></td>
+ </tr>
+ </tbody>
+ </table>
+
+ <h4>Blacklisted domains</h4>
+ <table class="styled-table">
+ <thead>
+ <tr>
+ <th>Domain</th>
+ <th>Reason</th>
+ <th>Tries to back off</th>
+ </tr>
+ </thead>
+ <tbody id=sdch-view-blacklist-body>
+ <tr jsselect="blacklisted">
+ <td jscontent="domain"></td>
+ <td jscontent="sdchProblemCodeToString(reason)"></td>
+ <td jscontent="tries"></td>
+ </tr>
+ </tbody>
+ </table>
+</div>
+
« no previous file with comments | « netlog_viewer/resizable_vertical_split_view.js ('k') | netlog_viewer/sdch_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698