| <!doctype html> |
| <html i18n-values="dir:textdirection;lang:language"> |
| <head> |
| <meta charset="utf-8"> |
| <title i18n-content="title"></title> |
| |
| <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| |
| <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-toolbar.html"> |
| |
| <link rel="import" href="chrome://resources/html/action_link.html"> |
| <link rel="import" href="chrome://resources/html/assert.html"> |
| <link rel="import" href="chrome://resources/html/cr.html"> |
| |
| <script src="chrome://resources/js/util.js"></script> |
| <script src="chrome://resources/js/load_time_data.js"></script> |
| <script src="chrome://resources/js/cr/ui.js"></script> |
| <script src="chrome://resources/js/cr/ui/command.js"></script> |
| |
| <script src="chrome://downloads/constants.js"></script> |
| <script src="chrome://downloads/manager.js"></script> |
| |
| <link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
| <link rel="stylesheet" href="downloads.css"> |
| </head> |
| <body class="fullbleed"> |
| |
| <paper-toolbar id="downloads-toolbar"> |
| <h1 class="flex-auto" i18n-content="title"></h1> |
| <paper-icon-button icon="search" id="search-button"></paper-icon-button> |
| <paper-input id="search-term" class="flex-none" |
| i18n-values="label:searchbutton" no-label-float hidden></paper-input> |
| <paper-icon-button icon="clear" id="clear-search" |
| hidden></paper-icon-button> |
| </paper-toolbar> |
| |
| <div class="main"> |
| <div class="summary" id="downloads-summary"> |
| <span id="downloads-summary-text"></span> |
| <span id="downloads-actions"> |
| <a is="action-link" id="open-downloads-folder" |
| i18n-content="open_downloads_folder"></a> |
| <a is="action-link" id="clear-all" i18n-content="clear_all" hidden></a> |
| </span> |
| </div> |
| <div id="downloads-display"></div> |
| <div id="no-downloads-or-results"></div> |
| </div> |
| |
| <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> |
| <if expr="is_macosx"> |
| <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> |
| </if> |
| <if expr="not is_macosx"> |
| <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> |
| </if> |
| |
| <script src="chrome://downloads/strings.js"></script> |
| <script src="chrome://resources/js/i18n_template.js"></script> |
| |
| </body> |
| </html> |