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

Side by Side Diff: chrome/browser/resources/md_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: actually remove i18n changes 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 6
7 <script src="chrome://resources/js/polymer_config.js"></script>
7 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" > 8 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" >
8 9
9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons .html"> 11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons .html">
11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/pap er-icon-button.html"> 12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/pap er-icon-button.html">
12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-inp ut.html"> 13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-inp ut.html">
13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-t oolbar.html"> 14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-t oolbar.html">
14 15
15 <link rel="import" href="chrome://resources/html/action_link.html"> 16 <link rel="import" href="chrome://resources/html/action_link.html">
16 <link rel="import" href="chrome://resources/html/assert.html"> 17 <link rel="import" href="chrome://resources/html/assert.html">
17 <link rel="import" href="chrome://resources/html/cr.html"> 18 <link rel="import" href="chrome://resources/html/cr.html">
18 19
19 <script src="chrome://resources/js/util.js"></script> 20 <script src="chrome://resources/js/util.js"></script>
20 <script src="chrome://resources/js/load_time_data.js"></script> 21 <script src="chrome://resources/js/load_time_data.js"></script>
21 <script src="chrome://resources/js/cr/ui.js"></script> 22 <script src="chrome://resources/js/cr/ui.js"></script>
22 <script src="chrome://resources/js/cr/ui/command.js"></script> 23 <script src="chrome://resources/js/cr/ui/command.js"></script>
23 24
24 <script src="chrome://downloads/constants.js"></script> 25 <script src="chrome://downloads/constants.js"></script>
26 <link rel="import" href="chrome://downloads/item_view.html">
27
25 <script src="chrome://downloads/manager.js"></script> 28 <script src="chrome://downloads/manager.js"></script>
26 29
27 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 30 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
28 <link rel="stylesheet" href="downloads.css"> 31 <link rel="stylesheet" href="downloads.css">
29 </head> 32 </head>
30 <body class="fullbleed"> 33 <body class="fullbleed">
31 34
32 <paper-toolbar id="downloads-toolbar"> 35 <paper-toolbar id="downloads-toolbar">
33 <h1 class="flex-auto" i18n-content="title"></h1> 36 <h1 class="flex-auto" i18n-content="title"></h1>
34 <paper-icon-button icon="search" id="search-button"></paper-icon-button> 37 <paper-icon-button icon="search" id="search-button"></paper-icon-button>
(...skipping 22 matching lines...) Expand all
57 </if> 60 </if>
58 <if expr="not is_macosx"> 61 <if expr="not is_macosx">
59 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> 62 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
60 </if> 63 </if>
61 64
62 <script src="chrome://downloads/strings.js"></script> 65 <script src="chrome://downloads/strings.js"></script>
63 <script src="chrome://resources/js/i18n_template.js"></script> 66 <script src="chrome://resources/js/i18n_template.js"></script>
64 67
65 </body> 68 </body>
66 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698