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

Side by Side Diff: netlog_viewer/sdch_view.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <div id=sdch-view-tab-content class=content-box>
2 <ul style="margin-top:0">
3 <li>SDCH Enabled:
4 <span jscontent="!!sdch_enabled" id=sdch-view-sdch-enabled></span>
5 </li>
6 </ul>
7
8 <p>SDCH Errors:
9 <a href="#events&q=type:URL_REQUEST%20SDCH_DECODING_ERROR"
10 style="padding-right:2em">Decoding</a>
11 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_ERROR">Dictionary</a>
12 </p>
13
14 <p>
15 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_FETCH">
16 SDCH Dictionary Fetches
17 </a>
18 </p>
19
20 <p>
21 <a href="#events&q=type:URL_REQUEST%20Avail-Dictionary">
22 SDCH Requests
23 </a>
24 </p>
25
26 <h4>
27 Dictionaries loaded: <span jscontent="dictionaries.length"></span>
28 </h4>
29 <table class="styled-table">
30 <thead>
31 <tr>
32 <th>Domain</th>
33 <th>Path</th>
34 <th>Ports</th>
35 <th>Server Hash</th>
36 <th>Client Hash</th>
37 <th>Url</th>
38 </tr>
39 </thead>
40 <tbody id=sdch-view-dictionaries-body>
41 <tr jsselect="dictionaries">
42 <td jscontent="domain"></td>
43 <td jscontent="path"></td>
44 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
45 <td jscontent="server_hash"></td>
46 <td jscontent="client_hash"></td>
47 <td jscontent="url"></td>
48 </tr>
49 </tbody>
50 </table>
51
52 <h4>Blacklisted domains</h4>
53 <table class="styled-table">
54 <thead>
55 <tr>
56 <th>Domain</th>
57 <th>Reason</th>
58 <th>Tries to back off</th>
59 </tr>
60 </thead>
61 <tbody id=sdch-view-blacklist-body>
62 <tr jsselect="blacklisted">
63 <td jscontent="domain"></td>
64 <td jscontent="sdchProblemCodeToString(reason)"></td>
65 <td jscontent="tries"></td>
66 </tr>
67 </tbody>
68 </table>
69 </div>
70
OLDNEW
« 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