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

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: 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 6
7 <link rel="import" href="chrome://resources/html/action_link.html">
8 <link rel="import" href="chrome://resources/html/polymer_config.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" > 9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" >
8
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://downloads/manager.html">
16 <link rel="import" href="chrome://resources/html/assert.html">
17 <link rel="import" href="chrome://resources/html/cr.html">
18
19 <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/cr/ui.js"></script>
22 <script src="chrome://resources/js/cr/ui/command.js"></script>
23
24 <script src="chrome://downloads/constants.js"></script>
25 <script src="chrome://downloads/manager.js"></script>
26 17
27 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 18 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
28 <link rel="stylesheet" href="downloads.css"> 19 <link rel="stylesheet" href="chrome://downloads/downloads.css">
29 </head> 20 </head>
30 <body class="fullbleed"> 21 <body class="fullbleed">
31 22
32 <paper-toolbar id="downloads-toolbar"> 23 <paper-toolbar id="downloads-toolbar">
33 <h1 class="flex-auto" i18n-content="title"></h1> 24 <h1 class="flex-auto" i18n-content="title"></h1>
34 <paper-icon-button icon="search" id="search-button"></paper-icon-button> 25 <paper-icon-button icon="search" id="search-button"></paper-icon-button>
35 <paper-input id="search-term" class="flex-none" 26 <paper-input id="search-term" class="flex-none"
36 i18n-values="label:searchbutton" no-label-float hidden></paper-input> 27 i18n-values="label:searchbutton" no-label-float hidden></paper-input>
37 <paper-icon-button icon="clear" id="clear-search" 28 <paper-icon-button icon="clear" id="clear-search"
38 hidden></paper-icon-button> 29 hidden></paper-icon-button>
(...skipping 13 matching lines...) Expand all
52 </div> 43 </div>
53 44
54 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> 45 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C -->
55 <if expr="is_macosx"> 46 <if expr="is_macosx">
56 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> 47 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z -->
57 </if> 48 </if>
58 <if expr="not is_macosx"> 49 <if expr="not is_macosx">
59 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> 50 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
60 </if> 51 </if>
61 52
62 <script src="chrome://downloads/strings.js"></script> 53 <link rel="import" href="chrome://resources/html/load_time_data.html">
63 <script src="chrome://resources/js/i18n_template.js"></script> 54 <link rel="import" href="chrome://downloads/strings.html">
55 <link rel="import" href="chrome://resources/html/i18n_template.html"></script>
64 56
65 </body> 57 </body>
66 </html> 58 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/compiled_resources2.gyp ('k') | chrome/browser/resources/md_downloads/item_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698