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

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

Issue 1224623013: Port downloads.ItemView to a Polymer component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@p-dl-rough-draft2
Patch Set: merge 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
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 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7 <!-- This has to come after chrome_shared.css --> 7 <!-- This has to come after chrome_shared.css -->
8 <link rel="stylesheet" href="downloads.css"> 8 <link rel="stylesheet" href="downloads.css">
9 <script src="chrome://resources/js/action_link.js"></script> 9 <script src="chrome://resources/js/action_link.js"></script>
10 <link rel="import" href="chrome://resources/html/assert.html"> 10 <link rel="import" href="chrome://resources/html/assert.html">
11 <link rel="import" href="chrome://resources/html/cr.html"> 11 <link rel="import" href="chrome://resources/html/cr.html">
12 <script src="chrome://resources/js/cr/ui.js"></script> 12 <script src="chrome://resources/js/cr/ui.js"></script>
13 <script src="chrome://resources/js/cr/ui/command.js"></script> 13 <script src="chrome://resources/js/cr/ui/command.js"></script>
14 <script src="chrome://resources/js/load_time_data.js"></script> 14 <script src="chrome://resources/js/load_time_data.js"></script>
15 <script src="chrome://resources/js/util.js"></script> 15 <script src="chrome://resources/js/util.js"></script>
16 <script src="chrome://resources/js/event_tracker.js"></script> 16 <script src="chrome://resources/js/event_tracker.js"></script>
17 <script src="chrome://resources/js/cr/ui/focus_row.js"></script> 17 <script src="chrome://resources/js/cr/ui/focus_row.js"></script>
18 <script src="chrome://resources/js/cr/ui/focus_grid.js"></script> 18 <script src="chrome://resources/js/cr/ui/focus_grid.js"></script>
19 <script src="chrome://downloads/constants.js"></script> 19 <link rel="import" href="chrome://downloads/constants.html">
20 <link rel="import" href="chrome://downloads/throttled_icon_loader.html"> 20 <link rel="import" href="chrome://downloads/throttled_icon_loader.html">
21 <script src="chrome://downloads/item_view.js"></script> 21 <script src="chrome://downloads/item_view.js"></script>
22 <script src="chrome://downloads/focus_row.js"></script> 22 <script src="chrome://downloads/focus_row.js"></script>
23 <script src="chrome://downloads/manager.js"></script> 23 <script src="chrome://downloads/manager.js"></script>
24 </head> 24 </head>
25 <body> 25 <body>
26 <header> 26 <header>
27 <h1 i18n-content="downloads"></h1> 27 <h1 i18n-content="downloads"></h1>
28 <input id="term" type="search" tabindex=1 28 <input id="term" type="search" tabindex=1
29 i18n-values="placeholder:searchbutton" autofocus incremental> 29 i18n-values="placeholder:searchbutton" autofocus incremental>
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 i18n-content="danger_save"></button> 95 i18n-content="danger_save"></button>
96 <button class="discard" column-type="discard" 96 <button class="discard" column-type="discard"
97 i18n-content="danger_discard"></button> 97 i18n-content="danger_discard"></button>
98 </div> 98 </div>
99 </div> 99 </div>
100 </div> 100 </div>
101 <script src="chrome://downloads/strings.js"></script> 101 <script src="chrome://downloads/strings.js"></script>
102 <script src="chrome://resources/js/i18n_template.js"></script> 102 <script src="chrome://resources/js/i18n_template.js"></script>
103 </body> 103 </body>
104 </html> 104 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/downloads/constants.html ('k') | chrome/browser/resources/md_downloads/compiled_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698