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

Side by Side Diff: chrome/browser/resources/predictors/resource_prefetch_predictor.html

Issue 462423004: Revert CL 117933003. Re-add resource speculative prefetching code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to fix patch failure 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id='rpp_enabled'>
2 <tabbox id="rpp_data">
3 <tabs>
4 <tab>URL Table Cache</tab>
5 <tab>Host Table Cache</tab>
6 </tabs>
7 <tabpanels>
8 <tabpanel>
9 <table id="">
10 <thead>
11 <tr>
12 <th>Main Frame Url</th>
13 <th>Resource Url</th>
14 <th>Resource Type</th>
15 <th>Num Hits</th>
16 <th>Num Misses</th>
17 <th>Consec Misses</th>
18 <th>Average Position</th>
19 <th>Score</th>
20 </tr>
21 </thead>
22 <tbody id="rpp_url_body">
23 </tbody>
24 </table>
25 </tabpanel>
26 <tabpanel>
27 <table id="">
28 <thead>
29 <tr>
30 <th>Host</th>
31 <th>Resource Url</th>
32 <th>Resource Type</th>
33 <th>Num Hits</th>
34 <th>Num Misses</th>
35 <th>Consec Misses</th>
36 <th>Average Position</th>
37 <th>Score</th>
38 </tr>
39 </thead>
40 <tbody id="rpp_host_body">
41 </tbody>
42 </table>
43 </tabpanel>
44 </tabpanels>
45 </tabbox>
46 </div>
47 <div id='rpp_disabled'>
48 Resource prefetch prediction is disabled.
49 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/predictors/predictors.js ('k') | chrome/browser/resources/predictors/resource_prefetch_predictor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698