OLD | NEW |
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 <script src="../shared/js/cr/ui/command.js"></script> | 61 <script src="../shared/js/cr/ui/command.js"></script> |
62 <script src="../shared/js/cr/ui/position_util.js"></script> | 62 <script src="../shared/js/cr/ui/position_util.js"></script> |
63 <script src="../shared/js/cr/ui/menu_item.js"></script> | 63 <script src="../shared/js/cr/ui/menu_item.js"></script> |
64 <script src="../shared/js/cr/ui/menu.js"></script> | 64 <script src="../shared/js/cr/ui/menu.js"></script> |
65 <script src="../shared/js/cr/ui/menu_button.js"></script> | 65 <script src="../shared/js/cr/ui/menu_button.js"></script> |
66 <script src="../shared/js/cr/ui/context_menu_handler.js"></script> | 66 <script src="../shared/js/cr/ui/context_menu_handler.js"></script> |
67 | 67 |
68 <script src="js/combobutton.js"></script> | 68 <script src="js/combobutton.js"></script> |
69 | 69 |
70 <script src="js/util.js"></script> | 70 <script src="js/util.js"></script> |
| 71 <script src="js/volume_manager.js"></script> |
71 <script src="js/directory_model.js"></script> | 72 <script src="js/directory_model.js"></script> |
72 <script src="js/file_copy_manager.js"></script> | 73 <script src="js/file_copy_manager.js"></script> |
73 <script src="js/file_manager.js"></script> | 74 <script src="js/file_manager.js"></script> |
74 <script src="js/file_manager_pyauto.js"></script> | 75 <script src="js/file_manager_pyauto.js"></script> |
75 <script src="js/file_transfer_controller.js"></script> | 76 <script src="js/file_transfer_controller.js"></script> |
76 <script src="js/file_type.js"></script> | 77 <script src="js/file_type.js"></script> |
77 <script src="js/metadata/metadata_provider.js"></script> | 78 <script src="js/metadata/metadata_provider.js"></script> |
78 <script src="js/metadata/metadata_cache.js"></script> | 79 <script src="js/metadata/metadata_cache.js"></script> |
79 <!-- For accurate load performance tracking main.js should be | 80 <!-- For accurate load performance tracking main.js should be |
80 the last script to include. --> | 81 the last script to include. --> |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 <div class=preview-thumbnails></div> | 178 <div class=preview-thumbnails></div> |
178 </div> | 179 </div> |
179 <div class=preview-summary></div> | 180 <div class=preview-summary></div> |
180 <div class="right buttonbar" visibleif="full-page"> | 181 <div class="right buttonbar" visibleif="full-page"> |
181 <button id="tasks" class="combobutton"></button> | 182 <button id="tasks" class="combobutton"></button> |
182 <button id="delete-button" command="#delete" | 183 <button id="delete-button" command="#delete" |
183 i18n-content="DELETE_BUTTON_LABEL"> | 184 i18n-content="DELETE_BUTTON_LABEL"> |
184 </button> | 185 </button> |
185 </div> | 186 </div> |
186 </div> | 187 </div> |
187 <div class='unmounted-panel'></div> | 188 <div id='unmounted-panel'></div> |
188 </div> | 189 </div> |
189 </div> | 190 </div> |
190 </div> | 191 </div> |
191 <div class=dialog-footer invisibleif='full-page'> | 192 <div class=dialog-footer invisibleif='full-page'> |
192 <div class=filename-label i18n-content=FILENAME_LABEL | 193 <div class=filename-label i18n-content=FILENAME_LABEL |
193 visibleif='saveas-file' | 194 visibleif='saveas-file' |
194 >[FILENAME]</div> | 195 >[FILENAME]</div> |
195 <input type=text class=filename-input spellcheck=false | 196 <input type=text class=filename-input spellcheck=false |
196 visibleif='saveas-file'> | 197 visibleif='saveas-file'> |
197 <div class=horizontal-spacer></div> | 198 <div class=horizontal-spacer></div> |
(...skipping 11 matching lines...) Expand all Loading... |
209 <div class="progress-bar hide-in-butter"> | 210 <div class="progress-bar hide-in-butter"> |
210 <div class="progress-track"></div> | 211 <div class="progress-track"></div> |
211 </div> | 212 </div> |
212 </div> | 213 </div> |
213 <div class="actions hide-in-butter"></div> | 214 <div class="actions hide-in-butter"></div> |
214 </div> | 215 </div> |
215 <div id=drag-image-container></div> | 216 <div id=drag-image-container></div> |
216 <iframe id=command-dispatcher hidden></iframe> | 217 <iframe id=command-dispatcher hidden></iframe> |
217 </body> | 218 </body> |
218 </html> | 219 </html> |
OLD | NEW |