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

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

Issue 10850038: Drive: Add "Clear Local Cache" in the Gear menu to clear all local cache of Drive. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixed the indent Created 8 years, 4 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
« 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 <command id="format" i18n-values="label:FORMAT_DEVICE_BUTTON_LABEL" 106 <command id="format" i18n-values="label:FORMAT_DEVICE_BUTTON_LABEL"
107 ></command> 107 ></command>
108 <command id="import-photos" i18n-values="label:IMPORT_PHOTOS_BUTTON_LABEL" 108 <command id="import-photos" i18n-values="label:IMPORT_PHOTOS_BUTTON_LABEL"
109 ></command> 109 ></command>
110 110
111 <command id="gdata-buy-more-space" 111 <command id="gdata-buy-more-space"
112 i18n-values="label:GDATA_BUY_MORE_SPACE" 112 i18n-values="label:GDATA_BUY_MORE_SPACE"
113 ></command> 113 ></command>
114 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP" 114 <command id="gdata-help" i18n-values="label:GDATA_MENU_HELP"
115 ></command> 115 ></command>
116 <command id="gdata-clear-local-cache"
117 i18n-values="label:GDATA_CLEAR_LOCAL_CACHE"></command>
116 </commands> 118 </commands>
117 119
118 <menu class="file-context-menu chrome-menu"> 120 <menu class="file-context-menu chrome-menu">
119 <menuitem id="default-action" 121 <menuitem id="default-action"
120 visibleif="full-page" hidden></menuitem> 122 visibleif="full-page" hidden></menuitem>
121 <hr id="default-action-separator" visibleif="full-page" hidden> 123 <hr id="default-action-separator" visibleif="full-page" hidden>
122 <menuitem command="#cut" visibleif="full-page"></menuitem> 124 <menuitem command="#cut" visibleif="full-page"></menuitem>
123 <menuitem command="#copy" visibleif="full-page"></menuitem> 125 <menuitem command="#copy" visibleif="full-page"></menuitem>
124 <menuitem command="#paste" visibleif="full-page"></menuitem> 126 <menuitem command="#paste" visibleif="full-page"></menuitem>
125 <hr visibleif="full-page"> 127 <hr visibleif="full-page">
126 <menuitem command="#rename"></menuitem> 128 <menuitem command="#rename"></menuitem>
127 <menuitem command="#delete"></menuitem> 129 <menuitem command="#delete"></menuitem>
128 <hr visibleif="saveas-file full-page"> 130 <hr visibleif="saveas-file full-page">
129 <menuitem command="#newfolder" 131 <menuitem command="#newfolder"
130 visibleif="saveas-file full-page"></menuitem> 132 visibleif="saveas-file full-page"></menuitem>
131 </menu> 133 </menu>
132 134
133 <menu class="roots-context-menu chrome-menu" > 135 <menu class="roots-context-menu chrome-menu" >
134 <menuitem command="#import-photos"></menuitem> 136 <menuitem command="#import-photos"></menuitem>
135 <menuitem command="#unmount"></menuitem> 137 <menuitem command="#unmount"></menuitem>
136 <menuitem command="#format"></menuitem> 138 <menuitem command="#format"></menuitem>
137 </menu> 139 </menu>
138 140
139 <menu id="docs-settings" class="chrome-menu"> 141 <menu id="docs-settings" class="chrome-menu">
140 <menuitem id="gdata-sync-settings" 142 <menuitem id="gdata-sync-settings"
141 i18n-content=GDATA_MOBILE_CONNECTION_OPTION></menuitem> 143 i18n-content=GDATA_MOBILE_CONNECTION_OPTION></menuitem>
142 <menuitem id="gdata-hosted-settings" 144 <menuitem id="gdata-hosted-settings"
143 i18n-content=GDATA_SHOW_HOSTED_FILES_OPTION></menuitem> 145 i18n-content=GDATA_SHOW_HOSTED_FILES_OPTION></menuitem>
146 <hr visibleif="ctrl">
147 <menuitem id="gdata-clear-local-cache" visibleif="ctrl"
148 command="#gdata-clear-local-cache"></menuitem>
144 <hr> 149 <hr>
145 <div id="gdata-space-info" disabled> 150 <div id="gdata-space-info" disabled>
146 <span id="gdata-space-info-label" 151 <span id="gdata-space-info-label"
147 i18n-content=GDATA_WAITING_FOR_SPACE_INFO 152 i18n-content=GDATA_WAITING_FOR_SPACE_INFO
148 ></span> 153 ></span>
149 <div><div id="gdata-space-info-bar" style="width:100%" pending></div 154 <div><div id="gdata-space-info-bar" style="width:100%" pending></div
150 ></div> 155 ></div>
151 </div> 156 </div>
152 <menuitem command="#gdata-buy-more-space"></menuitem> 157 <menuitem command="#gdata-buy-more-space"></menuitem>
153 <menuitem command="#gdata-help"></menuitem> 158 <menuitem command="#gdata-help"></menuitem>
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 <div class="progress-bar hide-in-butter"> 249 <div class="progress-bar hide-in-butter">
245 <div class="progress-track"></div> 250 <div class="progress-track"></div>
246 </div> 251 </div>
247 </div> 252 </div>
248 <div class="actions hide-in-butter"></div> 253 <div class="actions hide-in-butter"></div>
249 </div> 254 </div>
250 <div id="drag-image-container"></div> 255 <div id="drag-image-container"></div>
251 <iframe id="command-dispatcher" hidden></iframe> 256 <iframe id="command-dispatcher" hidden></iframe>
252 </body> 257 </body>
253 </html> 258 </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