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

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

Issue 722953002: downloads: add the ability to undo download removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fixes Created 6 years 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;"> 2 <html i18n-values="dir:textdirection;">
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 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/ui.js"></script>
12 <script src="chrome://resources/js/cr/ui/command.js"></script>
10 <script src="chrome://resources/js/load_time_data.js"></script> 13 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script> 14 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://downloads/downloads.js"></script> 15 <script src="chrome://downloads/downloads.js"></script>
13 </head> 16 </head>
14 <body> 17 <body>
15 <header> 18 <header>
16 <h1 i18n-content="downloads"></h1> 19 <h1 i18n-content="downloads"></h1>
17 <input id="term" type="search" tabindex=1 20 <input id="term" type="search" tabindex=1
18 i18n-values="placeholder:searchbutton" autofocus incremental> 21 i18n-values="placeholder:searchbutton" autofocus incremental>
19 </header> 22 </header>
20 <div class="main"> 23 <div class="main">
21 <div class="summary" id="downloads-summary"> 24 <div class="summary" id="downloads-summary">
22 <span id="downloads-summary-text"></span> 25 <span id="downloads-summary-text"></span>
23 <span id="downloads-actions"> 26 <span id="downloads-actions">
24 <a is="action-link" id="open-downloads-folder" 27 <a is="action-link" id="open-downloads-folder"
25 i18n-content="open_downloads_folder"></a> 28 i18n-content="open_downloads_folder"></a>
26 <span id="clear-all-holder"></span> 29 <span id="clear-all-holder"></span>
27 </span> 30 </span>
28 </div> 31 </div>
29 <div id="downloads-display"></div> 32 <div id="downloads-display"></div>
30 <div id="no-downloads-or-results"></div> 33 <div id="no-downloads-or-results"></div>
31 </div> 34 </div>
35 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C -->
36 <if expr="is_macosx">
37 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z -->
38 </if>
39 <if expr="not is_macosx">
40 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
41 </if>
32 <script src="chrome://downloads/strings.js"></script> 42 <script src="chrome://downloads/strings.js"></script>
33 <script src="chrome://resources/js/i18n_template2.js"></script> 43 <script src="chrome://resources/js/i18n_template2.js"></script>
34 </body> 44 </body>
35 </html> 45 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/downloads/compiled_resources.gyp ('k') | chrome/browser/resources/downloads/downloads.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698