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

Side by Side Diff: ui/file_manager/file_manager/main.html

Issue 899943002: Rework update model to eliminate a "flicker" resulting from the brief update to zero results when a… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't use drive icon in dialog for now, since this breaks funcitonal tests. Created 5 years, 10 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
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/import_controller_unittest.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;lang:language"> 7 <html i18n-values="dir:textdirection;lang:language">
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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 visibleif="full-page"> 328 visibleif="full-page">
329 <core-icon icon="delete"></core-icon> 329 <core-icon icon="delete"></core-icon>
330 <paper-ripple fit></paper-ripple> 330 <paper-ripple fit></paper-ripple>
331 </button> 331 </button>
332 <button id="cloud-import-button" class="icon-button" tabindex="11" 332 <button id="cloud-import-button" class="icon-button" tabindex="11"
333 i18n-values="aria-label:CLOUD_IMPORT_BUTTON_LABEL" 333 i18n-values="aria-label:CLOUD_IMPORT_BUTTON_LABEL"
334 style='display: none;'> 334 style='display: none;'>
335 <core-icon icon="cloud-queue"></core-icon> 335 <core-icon icon="cloud-queue"></core-icon>
336 <paper-ripple fit></paper-ripple> 336 <paper-ripple fit></paper-ripple>
337 </button> 337 </button>
338 <button id="view-button" class="icon-button" tabindex="12"> 338 <button id="cloud-import-details-button" class="icon-button" tabindex="12"
339 style='display: none;'>
340 <core-icon icon="arrow-drop-down"></core-icon>
341 <paper-ripple fit></paper-ripple>
342 </button>
343 <button id="view-button" class="icon-button" tabindex="13">
339 <core-icon icon="view-module"></core-icon> 344 <core-icon icon="view-module"></core-icon>
340 <paper-ripple fit></paper-ripple> 345 <paper-ripple fit></paper-ripple>
341 </button> 346 </button>
342 <button id="gear-button" class="icon-button" tabindex="13" menu="#gear-men u" 347 <button id="gear-button" class="icon-button" tabindex="14" menu="#gear-men u"
343 i18n-values="aria-label:GEAR_BUTTON_TOOLTIP" 348 i18n-values="aria-label:GEAR_BUTTON_TOOLTIP"
344 aria-activedescendant="gear-menu"> 349 aria-activedescendant="gear-menu">
345 <core-icon icon="more-vert"></core-icon> 350 <core-icon icon="more-vert"></core-icon>
346 <paper-ripple fit></paper-ripple> 351 <paper-ripple fit></paper-ripple>
347 </button> 352 </button>
348 </div> 353 </div>
349 354
355 <div id="cloud-import-details" class="offscreen">
356 <h1>Backup to Drive</h1>
357
358 <div id='#open-destination'>
359 <!!--
360 TODO(smckay): Setting volume-type-icon to "drive" breaks
361 functional tests because selection of the drive volume is
362 done using a query that matches this. Need to fix that.
363 See background/test_util.js:105
364 -->
365 <core-icon class="icon volume-icon" volume-type-icon="na">
366 </core-icon> My Photos
367 </div>
368
369 <div class="detail">
370 New photos: <span class="photo-count">0</span>
371 </div>
372 <div class="detail">
373 Space required: <span class="space-required">0</span>
374 </div>
375
376 <div class="media-strip">
377 <tt>// TODO(smckay)</tt>
378 </div>
379
380 <div class="import">Import!</div>
381 </div>
382
350 <div class="dialog-container"> 383 <div class="dialog-container">
351 <div class="dialog-navigation-list"> 384 <div class="dialog-navigation-list">
352 <div class="dialog-navigation-list-contents"> 385 <div class="dialog-navigation-list-contents">
353 <tree id="directory-tree" tabindex="15"></tree> 386 <tree id="directory-tree" tabindex="15"></tree>
354 </div> 387 </div>
355 <div class="dialog-navigation-list-footer"> 388 <div class="dialog-navigation-list-footer">
356 <div id="progress-center" hidden> 389 <div id="progress-center" hidden>
357 <li id="progress-center-close-view"> 390 <li id="progress-center-close-view">
358 <div class="progress-frame"> 391 <div class="progress-frame">
359 <label></label> 392 <label></label>
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 <div class="right buttonbar"> 459 <div class="right buttonbar">
427 <select class="file-type" hidden></select> 460 <select class="file-type" hidden></select>
428 <button class="ok" disabled tabindex="2"></button> 461 <button class="ok" disabled tabindex="2"></button>
429 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="3"></button > 462 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="3"></button >
430 </div> 463 </div>
431 </div> 464 </div>
432 <div id="drag-container"></div> 465 <div id="drag-container"></div>
433 <iframe id="command-dispatcher" hidden></iframe> 466 <iframe id="command-dispatcher" hidden></iframe>
434 </body> 467 </body>
435 </html> 468 </html>
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/import_controller_unittest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698