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

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

Issue 131403003: Files.app: Show drive sync state in the progress center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-upload Created 6 years, 11 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
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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 <div class="dialog-navigation-list-header"> 275 <div class="dialog-navigation-list-header">
276 <span id="app-name"></span> 276 <span id="app-name"></span>
277 </div> 277 </div>
278 <div class="dialog-navigation-list-contents"> 278 <div class="dialog-navigation-list-contents">
279 <list id="navigation-list" tabindex="14"></list> 279 <list id="navigation-list" tabindex="14"></list>
280 </div> 280 </div>
281 <div class="dialog-navigation-list-footer"> 281 <div class="dialog-navigation-list-footer">
282 <div id="progress-center" hidden> 282 <div id="progress-center" hidden>
283 <li id="progress-center-close-view"> 283 <li id="progress-center-close-view">
284 <label></label> 284 <label></label>
285 <div class="progress-frame"> 285 <div class="progress-bar">
286 <div class="progress-bar"> 286 <div class="progress-track" hidden></div>
287 <div class="progress-track" hidden></div>
288 </div>
289 </div> 287 </div>
290 </li> 288 </li>
291 <div id="progress-center-open-view"></div> 289 <div id="progress-center-open-view"></div>
292 <button class="toggle" tabindex="-1"></button> 290 <button class="toggle" tabindex="-1"></button>
293 </div> 291 </div>
294 </div> 292 </div>
295 </div> 293 </div>
296 <div class="splitter" id="navigation-list-splitter"></div> 294 <div class="splitter" id="navigation-list-splitter"></div>
297 <div class="dialog-main"> 295 <div class="dialog-main">
298 <div class="dialog-header"> 296 <div class="dialog-header">
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 <select class="file-type" hidden></select> 403 <select class="file-type" hidden></select>
406 <button class="ok" disabled tabindex="2"></button> 404 <button class="ok" disabled tabindex="2"></button>
407 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="3"></button > 405 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="3"></button >
408 </div> 406 </div>
409 </div> 407 </div>
410 <div id="drag-container"></div> 408 <div id="drag-container"></div>
411 <iframe id="command-dispatcher" hidden></iframe> 409 <iframe id="command-dispatcher" hidden></iframe>
412 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 410 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
413 </body> 411 </body>
414 </html> 412 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698