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

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

Issue 10914206: [FileBrowser] Added go to gdrive menu item. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with master. Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 <command id="import-photos" i18n-values="label:IMPORT_PHOTOS_BUTTON_LABEL" 118 <command id="import-photos" i18n-values="label:IMPORT_PHOTOS_BUTTON_LABEL"
119 ></command> 119 ></command>
120 120
121 <command id="gdata-buy-more-space" 121 <command id="gdata-buy-more-space"
122 i18n-values="label:GDATA_BUY_MORE_SPACE" 122 i18n-values="label:GDATA_BUY_MORE_SPACE"
123 ></command> 123 ></command>
124 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP" 124 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP"
125 ></command> 125 ></command>
126 <command id="gdata-clear-local-cache" 126 <command id="gdata-clear-local-cache"
127 i18n-values="label:GDATA_CLEAR_LOCAL_CACHE"></command> 127 i18n-values="label:GDATA_CLEAR_LOCAL_CACHE"></command>
128 <command id="gdata-go-to-drive"
129 i18n-values="label:GDATA_VISIT_DRIVE_GOOGLE_COM"></command>
128 <command id="open-with" 130 <command id="open-with"
129 i18n-values="label:OPEN_WITH_BUTTON_LABEL"></command> 131 i18n-values="label:OPEN_WITH_BUTTON_LABEL"></command>
130 </commands> 132 </commands>
131 133
132 <menu id="file-context-menu" class="chrome-menu"> 134 <menu id="file-context-menu" class="chrome-menu">
133 <menuitem id="default-action" 135 <menuitem id="default-action"
134 visibleif="full-page" hidden></menuitem> 136 visibleif="full-page" hidden></menuitem>
135 <menuitem command="#open-with" 137 <menuitem command="#open-with"
136 visibleif="full-page" hidden></menuitem> 138 visibleif="full-page" hidden></menuitem>
137 <hr id="default-action-separator" visibleif="full-page" hidden> 139 <hr id="default-action-separator" visibleif="full-page" hidden>
(...skipping 23 matching lines...) Expand all
161 command="#gdata-clear-local-cache"></menuitem> 163 command="#gdata-clear-local-cache"></menuitem>
162 <hr> 164 <hr>
163 <div id="gdata-space-info" disabled> 165 <div id="gdata-space-info" disabled>
164 <span id="gdata-space-info-label" 166 <span id="gdata-space-info-label"
165 i18n-content=GDATA_WAITING_FOR_SPACE_INFO 167 i18n-content=GDATA_WAITING_FOR_SPACE_INFO
166 ></span> 168 ></span>
167 <div><div id="gdata-space-info-bar" style="width:100%" pending></div 169 <div><div id="gdata-space-info-bar" style="width:100%" pending></div
168 ></div> 170 ></div>
169 </div> 171 </div>
170 <menuitem command="#gdata-buy-more-space"></menuitem> 172 <menuitem command="#gdata-buy-more-space"></menuitem>
173 <menuitem command="#gdata-go-to-drive"></menuitem>
171 <menuitem command="#gdata-help"></menuitem> 174 <menuitem command="#gdata-help"></menuitem>
172 </menu> 175 </menu>
173 176
174 <menu id="tasks-menu" class="chrome-menu"> 177 <menu id="tasks-menu" class="chrome-menu">
175 </menu> 178 </menu>
176 179
177 <menu id="text-context-menu" class="chrome-menu"> 180 <menu id="text-context-menu" class="chrome-menu">
178 <menuitem command="#cut"></menuitem> 181 <menuitem command="#cut"></menuitem>
179 <menuitem command="#copy"></menuitem> 182 <menuitem command="#copy"></menuitem>
180 <menuitem command="#paste"></menuitem> 183 <menuitem command="#paste"></menuitem>
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 <div class="progress-track"></div> 275 <div class="progress-track"></div>
273 </div> 276 </div>
274 </div> 277 </div>
275 <div class="actions" hidden></div> 278 <div class="actions" hidden></div>
276 </div> 279 </div>
277 </div> 280 </div>
278 <div id="drag-image-container"></div> 281 <div id="drag-image-container"></div>
279 <iframe id="command-dispatcher" hidden></iframe> 282 <iframe id="command-dispatcher" hidden></iframe>
280 </body> 283 </body>
281 </html> 284 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698