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

Side by Side Diff: chrome/browser/resources/net_internals/sdch_view.html

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix component linkage Created 6 years, 1 month 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
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 <li>Secure Scheme Support Enabled:
7 <span jscontent="!!secure_scheme_support"
8 id=sdch-view-secure-scheme-support></span>
9 </li>
10 </ul>
11
12 <p>SDCH Errors:
13 <a href="#events&q=type:URL_REQUEST%20SDCH_DECODING_ERROR"
14 style="padding-right:2em">Decoding</a>
15 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_ERROR">Dictionary</a>
16 </p>
17
18 <p>
19 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_FETCH">
20 SDCH Dictionary Fetches
21 </a>
22 </p>
23
24 <p>
25 <a href="#events&q=type:URL_REQUEST%20Avail-Dictionary">
26 SDCH Requests
27 </a>
28 </p>
29
30 <h4>
31 Dictionaries loaded: <span jscontent="dictionaries.length"></span>
32 </h4>
33 <table class="styled-table">
34 <thead>
35 <tr>
36 <th>Domain</th>
37 <th>Path</th>
38 <th>Ports</th>
39 <th>Server Hash</th>
40 <th>Client Hash</th>
41 <th>Url</th>
42 </tr>
43 </thead>
44 <tbody id=sdch-view-dictionaries-body>
45 <tr jsselect="dictionaries">
46 <td jscontent="domain"></td>
47 <td jscontent="path"></td>
48 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
49 <td jscontent="server_hash"></td>
50 <td jscontent="client_hash"></td>
51 <td jscontent="url"></td>
52 </tr>
53 </tbody>
54 </table>
55
56 <h4>Blacklisted domains</h4>
57 <table class="styled-table">
58 <thead>
59 <tr>
60 <th>Domain</th>
61 <th>Reason</th>
62 <th>Tries to back off</th>
63 </tr>
64 </thead>
65 <tbody id=sdch-view-blacklist-body>
66 <tr jsselect="blacklisted">
67 <td jscontent="domain"></td>
68 <td jscontent="sdchProblemCodeToString(reason)"></td>
69 <td jscontent="tries"></td>
70 </tr>
71 </tbody>
72 </table>
73 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/main.js ('k') | chrome/browser/resources/net_internals/sdch_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698