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/path_util.js"></script> |
71 <script src="js/directory_contents.js"></script> | 72 <script src="js/directory_contents.js"></script> |
72 <script src="js/volume_manager.js"></script> | 73 <script src="js/volume_manager.js"></script> |
73 <script src="js/directory_model.js"></script> | 74 <script src="js/directory_model.js"></script> |
74 <script src="js/file_copy_manager.js"></script> | |
75 <script src="js/file_manager.js"></script> | 75 <script src="js/file_manager.js"></script> |
76 <script src="js/file_manager_pyauto.js"></script> | 76 <script src="js/file_manager_pyauto.js"></script> |
77 <script src="js/file_transfer_controller.js"></script> | 77 <script src="js/file_transfer_controller.js"></script> |
78 <script src="js/file_type.js"></script> | 78 <script src="js/file_type.js"></script> |
79 <script src="js/media/media_util.js"></script> | 79 <script src="js/media/media_util.js"></script> |
80 <script src="js/metadata/metadata_cache.js"></script> | 80 <script src="js/metadata/metadata_cache.js"></script> |
81 <script src="js/default_action_dialog.js"></script> | 81 <script src="js/default_action_dialog.js"></script> |
82 <!-- For accurate load performance tracking main.js should be | 82 <!-- For accurate load performance tracking main.js should be |
83 the last script to include. --> | 83 the last script to include. --> |
84 <script src="js/main.js"></script> | 84 <script src="js/main.js"></script> |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 <div class="progress-bar hide-in-butter"> | 233 <div class="progress-bar hide-in-butter"> |
234 <div class="progress-track"></div> | 234 <div class="progress-track"></div> |
235 </div> | 235 </div> |
236 </div> | 236 </div> |
237 <div class="actions hide-in-butter"></div> | 237 <div class="actions hide-in-butter"></div> |
238 </div> | 238 </div> |
239 <div id="drag-image-container"></div> | 239 <div id="drag-image-container"></div> |
240 <iframe id="command-dispatcher" hidden></iframe> | 240 <iframe id="command-dispatcher" hidden></iframe> |
241 </body> | 241 </body> |
242 </html> | 242 </html> |
OLD | NEW |