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

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

Issue 13779006: Fixed gear menu navigation using keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Applied the changes to the new interface html. Created 7 years, 8 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;"> 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 <menu id="roots-context-menu" class="chrome-menu" > 178 <menu id="roots-context-menu" class="chrome-menu" >
179 <menuitem command="#import-photos"></menuitem> 179 <menuitem command="#import-photos"></menuitem>
180 <menuitem command="#unmount"></menuitem> 180 <menuitem command="#unmount"></menuitem>
181 <menuitem command="#format"></menuitem> 181 <menuitem command="#format"></menuitem>
182 </menu> 182 </menu>
183 183
184 <menu id="gear-menu" class="chrome-menu" showShortcuts> 184 <menu id="gear-menu" class="chrome-menu" showShortcuts>
185 <menuitem command="#newwindow"></menuitem> 185 <menuitem command="#newwindow"></menuitem>
186 <menuitem command="#newfolder"></menuitem> 186 <menuitem command="#newfolder"></menuitem>
187 <menuitem command="#change-default-app"></menuitem> 187 <menuitem command="#change-default-app"></menuitem>
188 <hr> 188 <hr id="drive-separator">
189 <menuitem id="drive-sync-settings" 189 <menuitem id="drive-sync-settings"
190 i18n-content=DRIVE_MOBILE_CONNECTION_OPTION></menuitem> 190 i18n-content=DRIVE_MOBILE_CONNECTION_OPTION></menuitem>
191 <menuitem id="drive-hosted-settings" 191 <menuitem id="drive-hosted-settings"
192 i18n-content=DRIVE_SHOW_HOSTED_FILES_OPTION></menuitem> 192 i18n-content=DRIVE_SHOW_HOSTED_FILES_OPTION></menuitem>
193 <hr required_attr="ctrl-pressing" required_drive> 193 <hr command="#drive-clear-local-cache">
194 <menuitem required_attr="ctrl-pressing" required_drive 194 <menuitem command="#drive-clear-local-cache"></menuitem>
195 command="#drive-clear-local-cache"></menuitem> 195 <menuitem command="#drive-reload"></menuitem>
196 <menuitem required_attr="ctrl-pressing" required_drive 196 <hr>
197 command="#drive-reload"></menuitem>
198 <hr required_drive>
199 <div id="volume-space-info" disabled> 197 <div id="volume-space-info" disabled>
200 <span id="volume-space-info-label"></span> 198 <span id="volume-space-info-label"></span>
201 <div><div id="volume-space-info-bar"></div></div> 199 <div><div id="volume-space-info-bar"></div></div>
202 </div> 200 </div>
203 <menuitem command="#drive-buy-more-space"></menuitem> 201 <menuitem command="#drive-buy-more-space"></menuitem>
204 <menuitem command="#drive-go-to-drive"></menuitem> 202 <menuitem command="#drive-go-to-drive"></menuitem>
205 <menuitem command="#volume-help"></menuitem> 203 <menuitem command="#volume-help"></menuitem>
206 </menu> 204 </menu>
207 205
208 <menu id="tasks-menu" class="chrome-menu"> 206 <menu id="tasks-menu" class="chrome-menu">
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 <div class="progress-track"></div> 316 <div class="progress-track"></div>
319 </div> 317 </div>
320 </div> 318 </div>
321 <div class="actions" hidden></div> 319 <div class="actions" hidden></div>
322 </div> 320 </div>
323 </div> 321 </div>
324 <div id="drag-container"></div> 322 <div id="drag-container"></div>
325 <iframe id="command-dispatcher" hidden></iframe> 323 <iframe id="command-dispatcher" hidden></iframe>
326 </body> 324 </body>
327 </html> 325 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698