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

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

Issue 2755093002: predictors: Mark before_first_contentful_paint for resources fetched before fcp. (Closed)
Patch Set: Bump kDatabaseVersion Created 3 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
1 <div id='rpp_enabled'> 1 <div id='rpp_enabled'>
2 <tabbox id="rpp_data"> 2 <tabbox id="rpp_data">
3 <tabs> 3 <tabs>
4 <tab>URL Table Cache</tab> 4 <tab>URL Table Cache</tab>
5 <tab>Host Table Cache</tab> 5 <tab>Host Table Cache</tab>
6 </tabs> 6 </tabs>
7 <tabpanels> 7 <tabpanels>
8 <tabpanel> 8 <tabpanel>
9 <table id=""> 9 <table id="">
10 <thead> 10 <thead>
11 <tr> 11 <tr>
12 <th>Main Frame Url</th> 12 <th>Main Frame Url</th>
13 <th>Resource Url</th> 13 <th>Resource Url</th>
14 <th>Resource Type</th> 14 <th>Resource Type</th>
15 <th>Num Hits</th> 15 <th>Num Hits</th>
16 <th>Num Misses</th> 16 <th>Num Misses</th>
17 <th>Consec Misses</th> 17 <th>Consec Misses</th>
18 <th>Average Position</th> 18 <th>Average Position</th>
19 <th>Score</th> 19 <th>Score</th>
20 <th>Before FCP</th>
20 </tr> 21 </tr>
21 </thead> 22 </thead>
22 <tbody id="rpp_url_body"> 23 <tbody id="rpp_url_body">
23 </tbody> 24 </tbody>
24 </table> 25 </table>
25 </tabpanel> 26 </tabpanel>
26 <tabpanel> 27 <tabpanel>
27 <table id=""> 28 <table id="">
28 <thead> 29 <thead>
29 <tr> 30 <tr>
30 <th>Host</th> 31 <th>Host</th>
31 <th>Resource Url</th> 32 <th>Resource Url</th>
32 <th>Resource Type</th> 33 <th>Resource Type</th>
33 <th>Num Hits</th> 34 <th>Num Hits</th>
34 <th>Num Misses</th> 35 <th>Num Misses</th>
35 <th>Consec Misses</th> 36 <th>Consec Misses</th>
36 <th>Average Position</th> 37 <th>Average Position</th>
37 <th>Score</th> 38 <th>Score</th>
39 <th>Before FCP</th>
38 </tr> 40 </tr>
39 </thead> 41 </thead>
40 <tbody id="rpp_host_body"> 42 <tbody id="rpp_host_body">
41 </tbody> 43 </tbody>
42 </table> 44 </table>
43 </tabpanel> 45 </tabpanel>
44 </tabpanels> 46 </tabpanels>
45 </tabbox> 47 </tabbox>
46 </div> 48 </div>
47 <div id='rpp_disabled'> 49 <div id='rpp_disabled'>
48 Resource prefetch prediction is disabled. 50 Resource prefetch prediction is disabled.
49 </div> 51 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698