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

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

Issue 862263002: Remove app name from File.app's window. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/ui/file_manager_ui.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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 295
296 <cr-menu id="text-context-menu" class="chrome-menu" showShortcuts> 296 <cr-menu id="text-context-menu" class="chrome-menu" showShortcuts>
297 <cr-menu-item command="#cut"></cr-menu-item> 297 <cr-menu-item command="#cut"></cr-menu-item>
298 <cr-menu-item command="#copy"></cr-menu-item> 298 <cr-menu-item command="#copy"></cr-menu-item>
299 <cr-menu-item command="#paste"></cr-menu-item> 299 <cr-menu-item command="#paste"></cr-menu-item>
300 <cr-menu-item command="#delete" i18n-content="DELETE_BUTTON_LABEL"></cr-me nu-item> 300 <cr-menu-item command="#delete" i18n-content="DELETE_BUTTON_LABEL"></cr-me nu-item>
301 </cr-menu> 301 </cr-menu>
302 302
303 <div class="dialog-container"> 303 <div class="dialog-container">
304 <div class="dialog-navigation-list"> 304 <div class="dialog-navigation-list">
305 <div class="dialog-navigation-list-header">
306 <span id="app-name"></span>
307 </div>
308 <div class="dialog-navigation-list-contents"> 305 <div class="dialog-navigation-list-contents">
309 <tree id="directory-tree" tabindex="15"></tree> 306 <tree id="directory-tree" tabindex="15"></tree>
310 </div> 307 </div>
311 <div class="dialog-navigation-list-footer"> 308 <div class="dialog-navigation-list-footer">
312 <div id="progress-center" hidden> 309 <div id="progress-center" hidden>
313 <li id="progress-center-close-view"> 310 <li id="progress-center-close-view">
314 <div class="progress-frame"> 311 <div class="progress-frame">
315 <label></label> 312 <label></label>
316 <div class="progress-bar"> 313 <div class="progress-bar">
317 <div class="progress-track" hidden></div> 314 <div class="progress-track" hidden></div>
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 <div class="right buttonbar"> 428 <div class="right buttonbar">
432 <select class="file-type" hidden></select> 429 <select class="file-type" hidden></select>
433 <button class="ok" disabled tabindex="2"></button> 430 <button class="ok" disabled tabindex="2"></button>
434 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="3"></button > 431 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="3"></button >
435 </div> 432 </div>
436 </div> 433 </div>
437 <div id="drag-container"></div> 434 <div id="drag-container"></div>
438 <iframe id="command-dispatcher" hidden></iframe> 435 <iframe id="command-dispatcher" hidden></iframe>
439 </body> 436 </body>
440 </html> 437 </html>
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/ui/file_manager_ui.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698