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

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

Issue 462423004: Revert CL 117933003. Re-add resource speculative prefetching code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to fix patch failure Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Predictors</title> 5 <title>Predictors</title>
6 <link rel="stylesheet" href="chrome://resources/css/list.css"> 6 <link rel="stylesheet" href="chrome://resources/css/list.css">
7 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 7 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
8 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 8 <link rel="stylesheet" href="chrome://resources/css/tree.css">
9 9
10 <style> 10 <style>
11 <include src="predictors.css"> 11 <include src="predictors.css">
12 </style> 12 </style>
13 13
14 <!-- List stuff. --> 14 <!-- List stuff. -->
15 <script src="chrome://resources/js/cr.js"></script> 15 <script src="chrome://resources/js/cr.js"></script>
16 <script src="chrome://resources/js/cr/ui.js"></script> 16 <script src="chrome://resources/js/cr/ui.js"></script>
17 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 17 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
18 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 18 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
19 <script src="chrome://resources/js/util.js"></script> 19 <script src="chrome://resources/js/util.js"></script>
20 </head> 20 </head>
21 21
22 <body> 22 <body>
23 <tabbox id="predictor-page"> 23 <tabbox id="predictor-page">
24 <tabs> 24 <tabs>
25 <tab>Autocomplete Action Predictor</tab> 25 <tab>Autocomplete Action Predictor</tab>
26 <tab>Resource Prefetch Predictor</tab>
26 </tabs> 27 </tabs>
27 <tabpanels> 28 <tabpanels>
28 <tabpanel> 29 <tabpanel>
29 <include src="autocomplete_action_predictor.html" /> 30 <include src="autocomplete_action_predictor.html" />
30 </tabpanel> 31 </tabpanel>
32 <tabpanel>
33 <include src="resource_prefetch_predictor.html" />
34 </tabpanel>
31 </tabpanels> 35 </tabpanels>
32 </tabbox> 36 </tabbox>
33 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 37 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
34 <script src="chrome://predictors/predictors.js"></script> 38 <script src="chrome://predictors/predictors.js"></script>
35 </body> 39 </body>
36 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698