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

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: 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 <menuitem command="#unmount"></menuitem> 175 <menuitem command="#unmount"></menuitem>
176 <menuitem command="#format"></menuitem> 176 <menuitem command="#format"></menuitem>
177 </menu> 177 </menu>
178 178
179 <menu id="gear-menu" class="chrome-menu" showShortcuts> 179 <menu id="gear-menu" class="chrome-menu" showShortcuts>
180 <menuitem command="#newwindow"></menuitem> 180 <menuitem command="#newwindow"></menuitem>
181 <menuitem command="#newfolder"></menuitem> 181 <menuitem command="#newfolder"></menuitem>
182 <menuitem command="#change-default-app"></menuitem> 182 <menuitem command="#change-default-app"></menuitem>
183 <hr> 183 <hr>
184 <menuitem id="drive-sync-settings" 184 <menuitem id="drive-sync-settings"
185 i18n-content=DRIVE_MOBILE_CONNECTION_OPTION></menuitem> 185 i18n-content=DRIVE_MOBILE_CONNECTION_OPTION
186 required_drive></menuitem>
186 <menuitem id="drive-hosted-settings" 187 <menuitem id="drive-hosted-settings"
187 i18n-content=DRIVE_SHOW_HOSTED_FILES_OPTION></menuitem> 188 i18n-content=DRIVE_SHOW_HOSTED_FILES_OPTION
189 required_drive></menuitem>
188 <hr required_attr="ctrl-pressing" required_drive> 190 <hr required_attr="ctrl-pressing" required_drive>
189 <menuitem required_attr="ctrl-pressing" required_drive 191 <menuitem required_attr="ctrl-pressing" required_drive
190 command="#drive-clear-local-cache"></menuitem> 192 command="#drive-clear-local-cache"></menuitem>
191 <menuitem required_attr="ctrl-pressing" required_drive 193 <menuitem required_attr="ctrl-pressing" required_drive
192 command="#drive-reload"></menuitem> 194 command="#drive-reload"></menuitem>
193 <hr required_drive> 195 <hr required_drive>
194 <div id="volume-space-info" disabled> 196 <div id="volume-space-info" disabled>
195 <span id="volume-space-info-label"></span> 197 <span id="volume-space-info-label"></span>
196 <div><div id="volume-space-info-bar"></div></div> 198 <div><div id="volume-space-info-bar"></div></div>
197 </div> 199 </div>
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 <div class="progress-track"></div> 313 <div class="progress-track"></div>
312 </div> 314 </div>
313 </div> 315 </div>
314 <div class="actions" hidden></div> 316 <div class="actions" hidden></div>
315 </div> 317 </div>
316 </div> 318 </div>
317 <div id="drag-container"></div> 319 <div id="drag-container"></div>
318 <iframe id="command-dispatcher" hidden></iframe> 320 <iframe id="command-dispatcher" hidden></iframe>
319 </body> 321 </body>
320 </html> 322 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698