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

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

Issue 1240853002: Slice MD downloads into more components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile 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
7 <link rel="import" href="chrome://resources/html/action_link.html"> 6 <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/html/polymer_config.html">
9 <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" >
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html">
11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons .html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons .html">
12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/pap er-icon-button.html"> 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/pap er-icon-button.html">
13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-inp ut.html"> 12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-inp ut.html">
14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-t oolbar.html"> 13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-t oolbar.html">
15 14 <link rel="import" href="chrome://downloads/toolbar.html">
16 <link rel="import" href="chrome://downloads/manager.html"> 15 <link rel="import" href="chrome://downloads/manager.html">
17
18 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 16 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
19 <link rel="stylesheet" href="chrome://downloads/downloads.css">
20 </head> 17 </head>
21 <body class="fullbleed"> 18 <body class="fullbleed">
22 19 <downloads-toolbar></downloads-toolbar>
23 <paper-toolbar id="downloads-toolbar">
24 <h1 class="flex-auto" i18n-content="title"></h1>
25 <paper-icon-button icon="search" id="search-button"></paper-icon-button>
26 <paper-input id="search-term" class="flex-none"
27 i18n-values="label:searchButton" no-label-float hidden></paper-input>
28 <paper-icon-button icon="clear" id="clear-search"
29 hidden></paper-icon-button>
30 </paper-toolbar>
31
32 <div class="main"> 20 <div class="main">
33 <div class="summary" id="downloads-summary"> 21 <div id="downloads-list"></div>
34 <span id="downloads-summary-text"></span> 22 <div id="no-downloads"></div>
35 <span id="downloads-actions">
36 <a is="action-link" id="open-downloads-folder"
37 i18n-content="openDownloadsFolder"></a>
38 <a is="action-link" id="clear-all" i18n-content="clearAll" hidden></a>
39 </span>
40 </div>
41 <div id="downloads-display"></div>
42 <div id="no-downloads-or-results"></div>
43 </div> 23 </div>
44
45 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> 24 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C -->
46 <if expr="is_macosx"> 25 <if expr="is_macosx">
47 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> 26 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z -->
48 </if> 27 </if>
49 <if expr="not is_macosx"> 28 <if expr="not is_macosx">
50 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> 29 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
51 </if> 30 </if>
52
53 <link rel="import" href="chrome://resources/html/load_time_data.html"> 31 <link rel="import" href="chrome://resources/html/load_time_data.html">
54 <link rel="import" href="chrome://downloads/strings.html"> 32 <link rel="import" href="chrome://downloads/strings.html">
55 <link rel="import" href="chrome://resources/html/i18n_template.html"></script> 33 <link rel="import" href="chrome://resources/html/i18n_template.html"></script>
56
57 </body> 34 </body>
58 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698