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

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

Issue 117933003: Remove the speculative resource prefetching code. This was experimental code added 1.5 years ago an… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 6 years, 11 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>
27 </tabs> 26 </tabs>
28 <tabpanels> 27 <tabpanels>
29 <tabpanel> 28 <tabpanel>
30 <include src="autocomplete_action_predictor.html" /> 29 <include src="autocomplete_action_predictor.html" />
31 </tabpanel> 30 </tabpanel>
32 <tabpanel>
33 <include src="resource_prefetch_predictor.html" />
34 </tabpanel>
35 </tabpanels> 31 </tabpanels>
36 </tabbox> 32 </tabbox>
37 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 33 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
38 <script src="chrome://predictors/predictors.js"></script> 34 <script src="chrome://predictors/predictors.js"></script>
39 </body> 35 </body>
40 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698