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

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 11309014: File manager: support for zipping selected files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Still missing unit test for ZipFileCreator. Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <!-- We have to set some default title, or chrome will use the page name. 9 <!-- We have to set some default title, or chrome will use the page name.
10 -- As soon as we init and change to a directory, we'll show the directory 10 -- As soon as we init and change to a directory, we'll show the directory
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP" 125 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP"
126 ></command> 126 ></command>
127 <command id="gdata-clear-local-cache" 127 <command id="gdata-clear-local-cache"
128 i18n-values="label:GDATA_CLEAR_LOCAL_CACHE"></command> 128 i18n-values="label:GDATA_CLEAR_LOCAL_CACHE"></command>
129 <command id="gdata-reload" 129 <command id="gdata-reload"
130 i18n-values="label:GDATA_RELOAD"></command> 130 i18n-values="label:GDATA_RELOAD"></command>
131 <command id="gdata-go-to-drive" 131 <command id="gdata-go-to-drive"
132 i18n-values="label:GDATA_VISIT_DRIVE_GOOGLE_COM"></command> 132 i18n-values="label:GDATA_VISIT_DRIVE_GOOGLE_COM"></command>
133 <command id="open-with" 133 <command id="open-with"
134 i18n-values="label:OPEN_WITH_BUTTON_LABEL"></command> 134 i18n-values="label:OPEN_WITH_BUTTON_LABEL"></command>
135 <command id="zip-selection"
136 i18n-values="label:ZIP_SELECTION_BUTTON_LABEL"></command>
135 </commands> 137 </commands>
136 138
137 <menu id="file-context-menu" class="chrome-menu" showShortcuts> 139 <menu id="file-context-menu" class="chrome-menu" showShortcuts>
138 <menuitem id="default-action" 140 <menuitem id="default-action"
139 visibleif="full-page" hidden></menuitem> 141 visibleif="full-page" hidden></menuitem>
140 <menuitem command="#open-with" 142 <menuitem command="#open-with"
141 visibleif="full-page" hidden></menuitem> 143 visibleif="full-page" hidden></menuitem>
142 <hr id="default-action-separator" visibleif="full-page" hidden> 144 <hr id="default-action-separator" visibleif="full-page" hidden>
143 <menuitem command="#cut" visibleif="full-page"></menuitem> 145 <menuitem command="#cut" visibleif="full-page"></menuitem>
144 <menuitem command="#copy" visibleif="full-page"></menuitem> 146 <menuitem command="#copy" visibleif="full-page"></menuitem>
145 <menuitem command="#paste" visibleif="full-page"></menuitem> 147 <menuitem command="#paste" visibleif="full-page"></menuitem>
146 <hr visibleif="full-page"> 148 <hr visibleif="full-page">
147 <menuitem command="#rename"></menuitem> 149 <menuitem command="#rename"></menuitem>
148 <menuitem command="#delete"></menuitem> 150 <menuitem command="#delete"></menuitem>
151 <menuitem command="#zip-selection"></menuitem>
149 <hr visibleif="saveas-file full-page"> 152 <hr visibleif="saveas-file full-page">
150 <menuitem command="#newfolder" 153 <menuitem command="#newfolder"
151 visibleif="saveas-file full-page"></menuitem> 154 visibleif="saveas-file full-page"></menuitem>
152 </menu> 155 </menu>
153 <menu id="roots-context-menu" class="chrome-menu" > 156 <menu id="roots-context-menu" class="chrome-menu" >
154 <menuitem command="#import-photos"></menuitem> 157 <menuitem command="#import-photos"></menuitem>
155 <menuitem command="#unmount"></menuitem> 158 <menuitem command="#unmount"></menuitem>
156 <menuitem command="#format"></menuitem> 159 <menuitem command="#format"></menuitem>
157 </menu> 160 </menu>
158 161
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 <div class="progress-track"></div> 290 <div class="progress-track"></div>
288 </div> 291 </div>
289 </div> 292 </div>
290 <div class="actions" hidden></div> 293 <div class="actions" hidden></div>
291 </div> 294 </div>
292 </div> 295 </div>
293 <div id="drag-image-container"></div> 296 <div id="drag-image-container"></div>
294 <iframe id="command-dispatcher" hidden></iframe> 297 <iframe id="command-dispatcher" hidden></iframe>
295 </body> 298 </body>
296 </html> 299 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698