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

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

Issue 23624005: Merge 218255 "Fix creating a directory in the Save-as dialog." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1599/src/
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 i18n-values="aria-label:SHARE_BUTTON_LABEL"></button> 356 i18n-values="aria-label:SHARE_BUTTON_LABEL"></button>
357 <button id="tasks" class="combobutton" menu="#tasks-menu" 357 <button id="tasks" class="combobutton" menu="#tasks-menu"
358 tabindex="3"></button> 358 tabindex="3"></button>
359 <button id="delete-button" command="#delete" tabindex="4" 359 <button id="delete-button" command="#delete" tabindex="4"
360 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button> 360 i18n-values="aria-label:DELETE_BUTTON_LABEL"></button>
361 </div> 361 </div>
362 <div class=preparing-label i18n-content=PREPARING_LABEL></div> 362 <div class=preparing-label i18n-content=PREPARING_LABEL></div>
363 <div class=progress-bar> 363 <div class=progress-bar>
364 <div class=progress-track></div> 364 <div class=progress-track></div>
365 </div> 365 </div>
366 <div class="right buttonbar" id="open-panel" visibleif="open-file op en-multi-file"> 366 <div class="right buttonbar" id="open-panel"
367 visibleif="open-file open-multi-file">
367 <select class="file-type"></select> 368 <select class="file-type"></select>
368 <button class=ok disabled tabindex="7"></button> 369 <button class=ok disabled tabindex="7"></button>
369 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></butt on> 370 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></butt on>
370 </div> 371 </div>
371 </div> 372 </div>
372 <div id="unmounted-panel"></div> 373 <div id="unmounted-panel"></div>
373 <div id="format-panel"> 374 <div id="format-panel">
374 <div class="error"></div> 375 <div class="error"></div>
375 <button id="format-button" command="#format"></button> 376 <button id="format-button" command="#format"></button>
376 </div> 377 </div>
377 </div> 378 </div>
378 </div> 379 </div>
379 </div> 380 </div>
380 <div class="dialog-footer progressable" visibleif="saveas-file folder"> 381 <div class="dialog-footer progressable" tabindex="-1"
382 visibleif="saveas-file folder">
381 <div class="left"> 383 <div class="left">
382 <button id="new-folder" i18n-content=NEW_FOLDER_BUTTON_LABEL 384 <button id="new-folder" i18n-content=NEW_FOLDER_BUTTON_LABEL
383 visibleif="saveas-file folder" command="#newfolder" 385 visibleif="saveas-file folder" command="#newfolder"
384 tabindex="5"> 386 tabindex="5">
385 </button> 387 </button>
386 <div id="filename-input-box"> 388 <div id="filename-input-box">
387 <div class=filename-label i18n-content=FILENAME_LABEL></div> 389 <div class=filename-label i18n-content=FILENAME_LABEL></div>
388 <input type=text spellcheck=false tabindex="6"> 390 <input type=text spellcheck=false tabindex="6">
389 </div> 391 </div>
390 <div class=preparing-label i18n-content=PREPARING_LABEL></div> 392 <div class=preparing-label i18n-content=PREPARING_LABEL></div>
391 <div class=progress-bar> 393 <div class=progress-bar>
392 <div class=progress-track></div> 394 <div class=progress-track></div>
393 </div> 395 </div>
394 </div> 396 </div>
395 <div class="right buttonbar"> 397 <div class="right buttonbar">
396 <select class="file-type"></select> 398 <select class="file-type"></select>
397 <button class=ok disabled tabindex="7"></button> 399 <button class=ok disabled tabindex="7"></button>
398 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button> 400 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button>
399 </div> 401 </div>
400 </div> 402 </div>
401 <div id="drag-container"></div> 403 <div id="drag-container"></div>
402 <iframe id="command-dispatcher" hidden></iframe> 404 <iframe id="command-dispatcher" hidden></iframe>
403 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 405 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
404 </body> 406 </body>
405 </html> 407 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698