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

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

Issue 1058873004: Revert of Add button to add new FSP services to Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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;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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 244
245 <command id="zoom-in" shortcut="U+00BB-Ctrl"> 245 <command id="zoom-in" shortcut="U+00BB-Ctrl">
246 <command id="zoom-out" shortcut="U+00BD-Ctrl"> 246 <command id="zoom-out" shortcut="U+00BD-Ctrl">
247 <command id="zoom-reset" shortcut="U+0030-Ctrl"> 247 <command id="zoom-reset" shortcut="U+0030-Ctrl">
248 248
249 <!-- Shortcuts to open inspector. (Ctrl+Shift+I/J/C/B) --> 249 <!-- Shortcuts to open inspector. (Ctrl+Shift+I/J/C/B) -->
250 <command id="inspect-normal" shortcut="U+0049-Shift-Ctrl"> 250 <command id="inspect-normal" shortcut="U+0049-Shift-Ctrl">
251 <command id="inspect-console" shortcut="U+004A-Shift-Ctrl"> 251 <command id="inspect-console" shortcut="U+004A-Shift-Ctrl">
252 <command id="inspect-element" shortcut="U+0043-Shift-Ctrl"> 252 <command id="inspect-element" shortcut="U+0043-Shift-Ctrl">
253 <command id="inspect-background" shortcut="U+0042-Shift-Ctrl"> 253 <command id="inspect-background" shortcut="U+0042-Shift-Ctrl">
254
255 <command id="add-new-services"
256 i18n-values="label:ADD_NEW_SERVICES_BUTTON_LABEL">
257 </commands> 254 </commands>
258 255
259 <cr-menu id="file-context-menu" class="chrome-menu" showShortcuts> 256 <cr-menu id="file-context-menu" class="chrome-menu" showShortcuts>
260 <cr-menu-item id="default-action" 257 <cr-menu-item id="default-action"
261 visibleif="full-page" hidden></cr-menu-item> 258 visibleif="full-page" hidden></cr-menu-item>
262 <cr-menu-item command="#open-with" 259 <cr-menu-item command="#open-with"
263 visibleif="full-page" hidden></cr-menu-item> 260 visibleif="full-page" hidden></cr-menu-item>
264 <hr id="default-action-separator" visibleif="full-page" hidden> 261 <hr id="default-action-separator" visibleif="full-page" hidden>
265 <cr-menu-item command="#toggle-pinned" checkable></cr-menu-item> 262 <cr-menu-item command="#toggle-pinned" checkable></cr-menu-item>
266 <cr-menu-item command="#share"></cr-menu-item> 263 <cr-menu-item command="#share"></cr-menu-item>
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 <select class="file-type" hidden tabindex="-1"></select> 495 <select class="file-type" hidden tabindex="-1"></select>
499 <button class="ok primary" disabled tabindex="5"></button> 496 <button class="ok primary" disabled tabindex="5"></button>
500 <button class="cancel secondary" i18n-content="CANCEL_LABEL" 497 <button class="cancel secondary" i18n-content="CANCEL_LABEL"
501 tabindex="6"></button> 498 tabindex="6"></button>
502 </div> 499 </div>
503 </div> 500 </div>
504 <div id="drag-container"></div> 501 <div id="drag-container"></div>
505 <iframe id="command-dispatcher" hidden></iframe> 502 <iframe id="command-dispatcher" hidden></iframe>
506 </body> 503 </body>
507 </html> 504 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698