Index: chrome/browser/resources/predictors/resource_prefetch_predictor.html |
diff --git a/chrome/browser/resources/predictors/resource_prefetch_predictor.html b/chrome/browser/resources/predictors/resource_prefetch_predictor.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..36903fa4c6e5e49302c023813bbc053bad839f73 |
--- /dev/null |
+++ b/chrome/browser/resources/predictors/resource_prefetch_predictor.html |
@@ -0,0 +1,49 @@ |
+<div id='rpp_enabled'> |
+ <tabbox id="rpp_data"> |
+ <tabs> |
+ <tab>URL Table Cache</tab> |
+ <tab>Host Table Cache</tab> |
+ </tabs> |
+ <tabpanels> |
+ <tabpanel> |
+ <table id=""> |
+ <thead> |
+ <tr> |
+ <th>Main Frame Url</th> |
+ <th>Resource Url</th> |
+ <th>Resource Type</th> |
+ <th>Num Hits</th> |
+ <th>Num Misses</th> |
+ <th>Consec Misses</th> |
+ <th>Average Position</th> |
+ <th>Score</th> |
+ </tr> |
+ </thead> |
+ <tbody id="rpp_url_body"> |
+ </tbody> |
+ </table> |
+ </tabpanel> |
+ <tabpanel> |
+ <table id=""> |
+ <thead> |
+ <tr> |
+ <th>Host</th> |
+ <th>Resource Url</th> |
+ <th>Resource Type</th> |
+ <th>Num Hits</th> |
+ <th>Num Misses</th> |
+ <th>Consec Misses</th> |
+ <th>Average Position</th> |
+ <th>Score</th> |
+ </tr> |
+ </thead> |
+ <tbody id="rpp_host_body"> |
+ </tbody> |
+ </table> |
+ </tabpanel> |
+ </tabpanels> |
+ </tabbox> |
+</div> |
+<div id='rpp_disabled'> |
+ Resource prefetch prediction is disabled. |
+</div> |