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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <div id="autocompleteActionPredictorEnabledMode" hidden>
2 <label>
3 <input id="filter" type="checkbox" disabled>
4 Filter zero confidences
5 </label>
6 <h2 id="countBanner"></h2>
7 <!-- TODO(dominich): Sorting. -->
8 <table id="databaseTable">
9 <thead>
10 <tr>
11 <th>User Text</th>
12 <th>URL</th>
13 <th>Hit Count</th>
14 <th>Miss Count</th>
15 <th>Confidence</th>
16 </tr>
17 </thead>
18 <tbody id="databaseTableBody">
19 </tbody>
20 </table>
21 </div>
22 <div id="autocompleteActionPredictorDisabledMode" hidden>
23 <p>Autocomplete Action Predictor is disabled.</p>
24 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698