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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 <script src="js/file_type.js"></script> | 107 <script src="js/file_type.js"></script> |
108 <script src="js/file_watcher.js"></script> | 108 <script src="js/file_watcher.js"></script> |
109 <script src="js/folder_shortcuts_data_model.js"></script> | 109 <script src="js/folder_shortcuts_data_model.js"></script> |
110 <script src="js/navigation_list.js"></script> | 110 <script src="js/navigation_list.js"></script> |
111 <script src="js/scrollbar.js"></script> | 111 <script src="js/scrollbar.js"></script> |
112 <script src="js/share_client.js"></script> | 112 <script src="js/share_client.js"></script> |
113 <script src="js/share_dialog.js"></script> | 113 <script src="js/share_dialog.js"></script> |
114 <script src="js/suggest_apps_dialog.js"></script> | 114 <script src="js/suggest_apps_dialog.js"></script> |
115 <script src="js/text_measure.js"></script> | 115 <script src="js/text_measure.js"></script> |
116 <script src="js/tree.css.js"></script> | 116 <script src="js/tree.css.js"></script> |
| 117 <script src="js/ui/preview_panel.js"></script> |
117 <script src="js/url_constants.js"></script> | 118 <script src="js/url_constants.js"></script> |
118 <script src="js/volume_manager.js"></script> | 119 <script src="js/volume_manager.js"></script> |
119 <script src="js/media/media_util.js"></script> | 120 <script src="js/media/media_util.js"></script> |
120 <script src="js/metadata/metadata_cache.js"></script> | 121 <script src="js/metadata/metadata_cache.js"></script> |
121 <script src="js/default_action_dialog.js"></script> | 122 <script src="js/default_action_dialog.js"></script> |
122 <script src="js/file_manager_commands.js"></script> | 123 <script src="js/file_manager_commands.js"></script> |
123 | 124 |
124 <!-- For accurate load performance tracking main.js should be | 125 <!-- For accurate load performance tracking main.js should be |
125 the last script to include. --> | 126 the last script to include. --> |
126 <script src="js/main.js"></script> | 127 <script src="js/main.js"></script> |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 <select class="file-type"></select> | 408 <select class="file-type"></select> |
408 <button class=ok disabled tabindex="7"></button> | 409 <button class=ok disabled tabindex="7"></button> |
409 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button> | 410 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button> |
410 </div> | 411 </div> |
411 </div> | 412 </div> |
412 <div id="drag-container"></div> | 413 <div id="drag-container"></div> |
413 <iframe id="command-dispatcher" hidden></iframe> | 414 <iframe id="command-dispatcher" hidden></iframe> |
414 <div class="overlay-pane" id="iframe-drag-area" hidden></div> | 415 <div class="overlay-pane" id="iframe-drag-area" hidden></div> |
415 </body> | 416 </body> |
416 </html> | 417 </html> |
OLD | NEW |