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

Unified 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 side-by-side diff with in-line comments
Download patch
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>
« 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