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

Unified Diff: chrome/browser/resources/predictors/autocomplete_action_predictor.html

Issue 10416002: Seculative resource prefetching for URLs CL. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Resolving conflicts. Created 8 years, 6 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/autocomplete_action_predictor.html
diff --git a/chrome/browser/resources/predictors/autocomplete_action_predictor.html b/chrome/browser/resources/predictors/autocomplete_action_predictor.html
new file mode 100644
index 0000000000000000000000000000000000000000..cc2e7597d3bedacbbb39c0bfd22424a48558135b
--- /dev/null
+++ b/chrome/browser/resources/predictors/autocomplete_action_predictor.html
@@ -0,0 +1,24 @@
+<div id="autocompleteActionPredictorEnabledMode" hidden>
+ <label>
+ <input id="filter" type="checkbox" disabled>
+ Filter zero confidences
+ </label>
+ <h2 id="countBanner"></h2>
+ <!-- TODO(dominich): Sorting. -->
+ <table id="databaseTable">
+ <thead>
+ <tr>
+ <th>User Text</th>
+ <th>URL</th>
+ <th>Hit Count</th>
+ <th>Miss Count</th>
+ <th>Confidence</th>
+ </tr>
+ </thead>
+ <tbody id="databaseTableBody">
+ </tbody>
+ </table>
+</div>
+<div id="autocompleteActionPredictorDisabledMode" hidden>
+ <p>Autocomplete Action Predictor is disabled.</p>
+</div>

Powered by Google App Engine
This is Rietveld 408576698