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

Side by Side Diff: chrome/browser/resources/network_action_predictor/network_action_predictor.html

Issue 9610006: Refactoring, moving and renaming the NetworkActionPredictor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressing Dominic's comments. Created 8 years, 9 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 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Network Action Predictor</title>
6 <link rel="stylesheet" href="network_action_predictor.css">
7 <script src="chrome://resources/js/util.js"></script>
8 <script src="chrome://network-action-predictor/network_action_predictor.js">
9 </script>
10 </head>
11 <body>
12 <div id="enabledMode" hidden>
13 <label>
14 <input id="filter" type="checkbox" disabled>
15 Filter zero confidences
16 </label>
17 <h2 id="countBanner"></h2>
18 <!-- TODO(dominich): Sorting. -->
19 <table id="databaseTable">
20 <thead>
21 <tr>
22 <th>User Text</th>
23 <th>URL</th>
24 <th>Hit Count</th>
25 <th>Miss Count</th>
26 <th>Confidence</th>
27 </tr>
28 </thead>
29 <tbody id="databaseTableBody">
30 </tbody>
31 </table>
32 </div>
33 <div id="disabledMode" hidden>
34 <p>Network Action Predictor is disabled.</p>
35 </div>
36 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698