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

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: Create Dictionary JSON directly in SdchManager::SdchInfoToValue Created 6 years, 4 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
OLDNEW
(Empty)
1 <div id=sdch-view-tab-content class=content-box>
2 <ul style='margin-top:0'>
3 <li>SDCH Enabled: <span jscontent="!!sdch_enabled"></span></li>
4 <li>Secure Scheme Support Enabled: <span jscontent="!!secure_scheme_support" ></span></li>
5 </ul>
6
7 <p><a href="#events&q=type:URL_REQUEST%20is:error%20SDCH_">View SDCH resource errors</a></p>
8
9 <p><a href="#events&q=type:SDCH_DICTIONARY_FETCHER">View SDCH dictionary fetch errors</a></p>
10
11 <h4>
12 Dictionaries loaded: <span jscontent="dictionaries.length"></span>
13 </h4>
14 <table class="styled-table">
15 <thead>
16 <tr>
17 <th>Domain</th>
18 <th>Path</th>
19 <th>Ports</th>
20 <th>Server Hash</th>
21 <th>Client Hash</th>
22 <th>Url</th>
23 <th>Expiration</th>
24 </tr>
25 </thead>
26 <tbody>
27 <tr jsselect="dictionaries">
28 <td jscontent="domain"></td>
29 <td jscontent="path"></td>
30 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
31 <td jscontent="server_hash"></td>
32 <td jscontent="client_hash"></td>
33 <td jscontent="url"></td>
34 <td jscontent="timeutil.dateToString(timeutil.convertTimeTicksToDate(exp iration)"></td>
35 </tr>
36 </tbody>
37 </table>
38
39 <h4>Blacklisted domains</h4>
40 <table class="styled-table">
41 <thead>
42 <tr>
43 <th>Domain</th>
44 <th>Tries to back off</th>
45 </tr>
46 </thead>
47 <tbody>
48 <tr jsselect="blacklisted">
49 <td jscontent="domain"></td>
50 <td jscontent="tries"></td>
51 </tr>
52 </tbody>
53 </table>
54 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698