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

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

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

Powered by Google App Engine
This is Rietveld 408576698