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

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: Adopt logging for URLReqest-based dict fetcher + cosmetics Created 6 years, 3 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_RESOURCE">View SDCH r esource errors</a></p>
8
9 <p><a href="#events&q=type:URL_REQUEST%20is:error%20SDCH_DICTIONARY">View SDCH dictionary fetch errors</a></p>
Randy Smith (Not in Mondays) 2014/09/29 21:21:56 These two links are effectively shortcuts for comm
Randy Smith (Not in Mondays) 2014/09/29 21:21:56 Suggestion: I think this section might look better
Randy Smith (Not in Mondays) 2014/09/29 21:21:56 I don't think this is in the style guide, so it sh
baranovich 2014/09/30 13:16:51 Done.
baranovich 2014/09/30 13:16:51 Done.
baranovich 2014/09/30 13:16:51 Done. I've figured out how to do only 2 of those a
Randy Smith (Not in Mondays) 2014/10/02 21:28:45 Is it reasonable to make the links inactive and ha
Randy Smith (Not in Mondays) 2014/10/02 21:28:45 That's fine--I was brainstorming.
mmenke 2014/10/02 21:53:56 It's possible, but you'd have to search though all
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 </tr>
24 </thead>
25 <tbody>
26 <tr jsselect="dictionaries">
27 <td jscontent="domain"></td>
28 <td jscontent="path"></td>
29 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
30 <td jscontent="server_hash"></td>
31 <td jscontent="client_hash"></td>
32 <td jscontent="url"></td>
33 </tr>
34 </tbody>
35 </table>
36
37 <h4>Blacklisted domains</h4>
38 <table class="styled-table">
39 <thead>
40 <tr>
41 <th>Domain</th>
42 <th>Reason</th>
43 <th>Tries to back off</th>
44 </tr>
45 </thead>
46 <tbody>
47 <tr jsselect="blacklisted">
48 <td jscontent="domain"></td>
49 <td jscontent="sdchProblemCodeToString(reason)"></td>
50 <td jscontent="tries"></td>
51 </tr>
52 </tbody>
53 </table>
54 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698