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

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

Issue 1229933006: WebUI: Convert History to use new HTML Import style for JavaScript. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « no previous file | ui/webui/resources/html/action_link.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <if expr="is_android or is_ios"> 5 <if expr="is_android or is_ios">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, 6 <meta name="viewport" content="width=device-width, initial-scale=1.0,
7 maximum-scale=1.0, user-scalable=no"> 7 maximum-scale=1.0, user-scalable=no">
8 </if> 8 </if>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css"> 10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
11 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 11 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
12 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 12 <link rel="stylesheet" href="chrome://resources/css/menu.css">
13 <link rel="stylesheet" href="chrome://resources/css/menu_button.css"> 13 <link rel="stylesheet" href="chrome://resources/css/menu_button.css">
14 <if expr="not is_android and not is_ios"> 14 <if expr="not is_android and not is_ios">
15 <link rel="stylesheet" href="alert_overlay.css"> 15 <link rel="stylesheet" href="alert_overlay.css">
16 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> 16 <link rel="stylesheet" href="chrome://resources/css/overlay.css">
17 </if> 17 </if>
18 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 18 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
19 <if expr="not is_android and not is_ios"> 19 <if expr="not is_android and not is_ios">
20 <link rel="stylesheet" href="../uber/uber_shared.css"> 20 <link rel="stylesheet" href="../uber/uber_shared.css">
21 </if> 21 </if>
22 <link rel="stylesheet" href="history.css"> 22 <link rel="stylesheet" href="history.css">
23 <if expr="is_android or is_ios"> 23 <if expr="is_android or is_ios">
24 <link rel="stylesheet" href="history_mobile.css"> 24 <link rel="stylesheet" href="history_mobile.css">
25 </if> 25 </if>
26 <if expr="not is_android and not is_ios"> 26 <if expr="not is_android and not is_ios">
27 <link rel="stylesheet" href="other_devices.css"> 27 <link rel="stylesheet" href="other_devices.css">
28 </if> 28 </if>
29 29
30 <script src="chrome://resources/js/action_link.js"></script> 30 <link rel="import" href="chrome://resources/html/action_link.html">
31 <script src="chrome://resources/js/assert.js"></script> 31 <link rel="import" href="chrome://resources/html/assert.html">
32 <script src="chrome://resources/js/event_tracker.js"></script> 32 <link rel="import" href="chrome://resources/html/event_tracker.html">
33 <script src="chrome://resources/js/util.js"></script> 33 <link rel="import" href="chrome://resources/html/util.html">
34 <script src="chrome://resources/js/cr.js"></script> 34 <link rel="import" href="chrome://resources/html/cr.html">
35 <script src="chrome://resources/js/cr/ui.js"></script> 35 <link rel="import" href="chrome://resources/html/cr/ui.html">
36 <script src="chrome://resources/js/cr/ui/command.js"></script> 36 <link rel="import" href="chrome://resources/html/cr/ui/command.html">
37 <script src="chrome://resources/js/cr/ui/focus_manager.js"></script> 37 <link rel="import" href="chrome://resources/html/cr/ui/focus_manager.html">
38 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 38 <link rel="import" href="chrome://resources/html/cr/ui/focus_outline_manager.htm l">
39 <script src="chrome://resources/js/cr/ui/focus_row.js"></script> 39 <link rel="import" href="chrome://resources/html/cr/ui/focus_row.html">
40 <script src="chrome://resources/js/cr/ui/focus_grid.js"></script> 40 <link rel="import" href="chrome://resources/html/cr/ui/focus_grid.html">
41 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 41 <link rel="import" href="chrome://resources/html/cr/ui/menu_item.html">
42 <script src="chrome://resources/js/cr/ui/menu.js"></script> 42 <link rel="import" href="chrome://resources/html/cr/ui/menu.html">
43 <if expr="not is_android and not is_ios"> 43 <if expr="not is_android and not is_ios">
44 <script src="chrome://resources/js/cr/ui/alert_overlay.js"></script> 44 <link rel="import" href="chrome://resources/html/cr/ui/alert_overlay.html">
45 <script src="chrome://resources/js/cr/ui/overlay.js"></script> 45 <link rel="import" href="chrome://resources/html/cr/ui/overlay.html">
46 </if> 46 </if>
47 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 47 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html">
48 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 48 <link rel="import" href="chrome://resources/html/cr/ui/menu_button.html">
49 <script src="chrome://resources/js/cr/ui/context_menu_button.js"></script> 49 <link rel="import" href="chrome://resources/html/cr/ui/context_menu_button.html" >
50 <script src="chrome://resources/js/cr/event_target.js"></script> 50 <link rel="import" href="chrome://resources/html/cr/event_target.html">
51 <script src="chrome://resources/js/cr/ui/context_menu_handler.js"></script> 51 <link rel="import" href="chrome://resources/html/cr/ui/context_menu_handler.html ">
52 52 <link rel="import" href="chrome://resources/html/load_time_data.html">
53 <script src="chrome://resources/js/load_time_data.js"></script>
54 <script src="chrome://resources/js/util.js"></script>
55 53
56 <script src="chrome://history-frame/history.js"></script> 54 <script src="chrome://history-frame/history.js"></script>
57 <if expr="not is_android"> 55 <if expr="not is_android">
58 <script src="chrome://history-frame/other_devices.js"></script> 56 <script src="chrome://history-frame/other_devices.js"></script>
59 </if> 57 </if>
60 58
61 </head> 59 </head>
62 60
63 <if expr="not is_android and not is_ios"> 61 <if expr="not is_android and not is_ios">
64 <body class="uber-frame"> 62 <body class="uber-frame">
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 <cr-menu id="action-menu" hidden> 137 <cr-menu id="action-menu" hidden>
140 <button id="more-from-site" i18n-content="moreFromSite"></button> 138 <button id="more-from-site" i18n-content="moreFromSite"></button>
141 <button id="remove-visit" i18n-content="removeFromHistory" 139 <button id="remove-visit" i18n-content="removeFromHistory"
142 command="#remove-visit-command"></button> 140 command="#remove-visit-command"></button>
143 </cr-menu> 141 </cr-menu>
144 142
145 <script src="chrome://history-frame/strings.js"></script> 143 <script src="chrome://history-frame/strings.js"></script>
146 <script src="chrome://resources/js/i18n_template.js"></script> 144 <script src="chrome://resources/js/i18n_template.js"></script>
147 </body> 145 </body>
148 </html> 146 </html>
OLDNEW
« no previous file with comments | « no previous file | ui/webui/resources/html/action_link.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698