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

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

Issue 1373733002: Reland: Files.app: add create directory operation to context menu of directory tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix flaky test cases. Created 5 years, 2 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
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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 </cr-menu> 156 </cr-menu>
157 157
158 <cr-menu id="directory-tree-context-menu" class="chrome-menu" > 158 <cr-menu id="directory-tree-context-menu" class="chrome-menu" >
159 <cr-menu-item command="#create-folder-shortcut"></cr-menu-item> 159 <cr-menu-item command="#create-folder-shortcut"></cr-menu-item>
160 <cr-menu-item command="#cut" visibleif="full-page"></cr-menu-item> 160 <cr-menu-item command="#cut" visibleif="full-page"></cr-menu-item>
161 <cr-menu-item command="#copy" visibleif="full-page"></cr-menu-item> 161 <cr-menu-item command="#copy" visibleif="full-page"></cr-menu-item>
162 <cr-menu-item command="#paste-into-folder" visibleif="full-page"></cr-menu -item> 162 <cr-menu-item command="#paste-into-folder" visibleif="full-page"></cr-menu -item>
163 <hr visibleif="full-page"> 163 <hr visibleif="full-page">
164 <cr-menu-item command="#rename"></cr-menu-item> 164 <cr-menu-item command="#rename"></cr-menu-item>
165 <cr-menu-item command="#delete" i18n-content="DELETE_BUTTON_LABEL"></cr-me nu-item> 165 <cr-menu-item command="#delete" i18n-content="DELETE_BUTTON_LABEL"></cr-me nu-item>
166 <hr visibleif="saveas-file full-page">
167 <cr-menu-item command="#new-folder" visibleif="saveas-file full-page"></cr -menu-item>
166 </cr-menu> 168 </cr-menu>
167 169
168 <cr-menu id="sort-menu" class="chrome-menu" menu-item-selector="cr-menu-item "> 170 <cr-menu id="sort-menu" class="chrome-menu" menu-item-selector="cr-menu-item ">
169 <cr-menu-item id="sort-menu-sort-by-name" 171 <cr-menu-item id="sort-menu-sort-by-name"
170 command="#sort-by-name"></cr-menu-item> 172 command="#sort-by-name"></cr-menu-item>
171 <cr-menu-item id="sort-menu-sort-by-size" 173 <cr-menu-item id="sort-menu-sort-by-size"
172 command="#sort-by-size"></cr-menu-item> 174 command="#sort-by-size"></cr-menu-item>
173 <cr-menu-item id="sort-menu-sort-by-type" 175 <cr-menu-item id="sort-menu-sort-by-type"
174 command="#sort-by-type"></cr-menu-item> 176 command="#sort-by-type"></cr-menu-item>
175 <cr-menu-item id="sort-menu-sort-by-date" 177 <cr-menu-item id="sort-menu-sort-by-date"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 </div> 436 </div>
435 <div id="drag-container"></div> 437 <div id="drag-container"></div>
436 <div id="tooltip"> 438 <div id="tooltip">
437 <div id="tooltip-label"></div> 439 <div id="tooltip-label"></div>
438 <div> 440 <div>
439 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe> 441 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe>
440 442
441 <script src="foreground/js/main_scripts.js"></script> 443 <script src="foreground/js/main_scripts.js"></script>
442 </body> 444 </body>
443 </html> 445 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698