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

Side by Side Diff: ios/chrome/app/resources/history/history.html

Issue 2014743002: Update iOS WebUI History to use icon.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | ios/chrome/app/resources/history/history.js » ('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 <meta name="viewport" content="width=device-width, initial-scale=1.0, 5 <meta name="viewport" content="width=device-width, initial-scale=1.0,
6 maximum-scale=1.0, user-scalable=no"> 6 maximum-scale=1.0, user-scalable=no">
7 <title i18n-content="title"></title> 7 <title i18n-content="title"></title>
8 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css"> 8 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
9 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 9 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
10 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 10 <link rel="stylesheet" href="chrome://resources/css/menu.css">
(...skipping 14 matching lines...) Expand all
25 <script src="chrome://resources/js/cr/ui/focus_row.js"></script> 25 <script src="chrome://resources/js/cr/ui/focus_row.js"></script>
26 <script src="chrome://resources/js/cr/ui/focus_grid.js"></script> 26 <script src="chrome://resources/js/cr/ui/focus_grid.js"></script>
27 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 27 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
28 <script src="chrome://resources/js/cr/ui/menu.js"></script> 28 <script src="chrome://resources/js/cr/ui/menu.js"></script>
29 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 29 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
30 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 30 <script src="chrome://resources/js/cr/ui/menu_button.js"></script>
31 <script src="chrome://resources/js/cr/ui/context_menu_button.js"></script> 31 <script src="chrome://resources/js/cr/ui/context_menu_button.js"></script>
32 <script src="chrome://resources/js/cr/event_target.js"></script> 32 <script src="chrome://resources/js/cr/event_target.js"></script>
33 <script src="chrome://resources/js/cr/ui/context_menu_handler.js"></script> 33 <script src="chrome://resources/js/cr/ui/context_menu_handler.js"></script>
34 34
35 <script src="chrome://resources/js/icon.js"></script>
35 <script src="chrome://resources/js/load_time_data.js"></script> 36 <script src="chrome://resources/js/load_time_data.js"></script>
36 <script src="chrome://resources/js/util.js"></script> 37 <script src="chrome://resources/js/util.js"></script>
37 38
38 <script src="chrome://history-frame/history.js"></script> 39 <script src="chrome://history-frame/history.js"></script>
39 <script src="chrome://history-frame/other_devices.js"></script> 40 <script src="chrome://history-frame/other_devices.js"></script>
40 41
41 </head> 42 </head>
42 43
43 <body> 44 <body>
44 45
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 <cr-menu id="action-menu" hidden> 107 <cr-menu id="action-menu" hidden>
107 <button id="more-from-site" i18n-content="moreFromSite"></button> 108 <button id="more-from-site" i18n-content="moreFromSite"></button>
108 <button id="remove-visit" i18n-content="removeFromHistory" 109 <button id="remove-visit" i18n-content="removeFromHistory"
109 command="#remove-visit-command"></button> 110 command="#remove-visit-command"></button>
110 </cr-menu> 111 </cr-menu>
111 112
112 <script src="chrome://history-frame/strings.js"></script> 113 <script src="chrome://history-frame/strings.js"></script>
113 <script src="chrome://resources/js/i18n_template.js"></script> 114 <script src="chrome://resources/js/i18n_template.js"></script>
114 </body> 115 </body>
115 </html> 116 </html>
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/app/resources/history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698