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

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

Issue 10416002: Seculative resource prefetching for URLs CL. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 7 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='resource_prefetch_predictor_enabled'>
2 <h2>Database Cache</h2>
3 <div>
4 <table id="resource_prefetch_predictor_db">
5 <thead>
6 <tr>
7 <th>Main Frame Url</th>
8 <th>Resource Url</th>
9 <th>Resource Type</th>
10 <th>Num Hits</th>
11 <th>Num Misses</th>
12 <th>Consec Misses</th>
13 <th>Average Position</th>
14 <th>Score</th>
15 </tr>
16 </thead>
17 <tbody id="resource_prefetch_predictor_db_body">
18 </tbody>
19 </table>
20 </div>
21 <div id='empty_resource_prefetch_predictor_db'>
22 No URLs in the Database.
23 </div>
24 </div>
25 <div id='resource_prefetch_predictor_disabled'>
26 Resource prefetch prediction is disabled.
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698