OLD | NEW |
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>Autocomplete Action Predictor</title> |
6 <link rel="stylesheet" href="network_action_predictor.css"> | 6 <link rel="stylesheet" href="autocomplete_action_predictor.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/autocomplete_action_predictor.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>Autocomplete Action Predictor is disabled.</p> |
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> |
OLD | NEW |