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 <if expr="0"> | 9 <if expr="0"> |
10 <!-- <if ... /if> is removed while flattening HTML. --> | 10 <!-- <if ... /if> is removed while flattening HTML. --> |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 92 |
93 <link rel="stylesheet" href="css/file_manager.css"></link> | 93 <link rel="stylesheet" href="css/file_manager.css"></link> |
94 | 94 |
95 <script src="js/util.js"></script> | 95 <script src="js/util.js"></script> |
96 <script src="js/directory_model.js"></script> | 96 <script src="js/directory_model.js"></script> |
97 <script src="js/file_copy_manager.js"></script> | 97 <script src="js/file_copy_manager.js"></script> |
98 <script src="js/file_manager.js"></script> | 98 <script src="js/file_manager.js"></script> |
99 <script src="js/file_manager_pyauto.js"></script> | 99 <script src="js/file_manager_pyauto.js"></script> |
100 <script src="js/file_type.js"></script> | 100 <script src="js/file_type.js"></script> |
101 <script src="js/main.js"></script> | 101 <script src="js/main.js"></script> |
102 <script src="js/metadata_provider.js"></script> | 102 <script src="js/metadata/metadata_provider.js"></script> |
103 | 103 |
104 <!-- For accurate load performance tracking | 104 <!-- For accurate load performance tracking |
105 place all scripts above this line --> | 105 place all scripts above this line --> |
106 <script> | 106 <script> |
107 metrics.recordInterval('Load.Script'); | 107 metrics.recordInterval('Load.Script'); |
108 </script> | 108 </script> |
109 | 109 |
110 <!-- We have to set some default title, or chrome will use the page | 110 <!-- We have to set some default title, or chrome will use the page |
111 -- name. As soon as we init and change to a directory, we'll use | 111 -- name. As soon as we init and change to a directory, we'll use |
112 -- the directory as the page title. Until then, have a unicode glyph | 112 -- the directory as the page title. Until then, have a unicode glyph |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 <div class="progress-bar hide-in-butter"> | 215 <div class="progress-bar hide-in-butter"> |
216 <div class="progress-track"></div> | 216 <div class="progress-track"></div> |
217 </div> | 217 </div> |
218 </div> | 218 </div> |
219 <div class="actions hide-in-butter"></div> | 219 <div class="actions hide-in-butter"></div> |
220 </div> | 220 </div> |
221 | 221 |
222 <script>init();</script> | 222 <script>init();</script> |
223 </body> | 223 </body> |
224 </html> | 224 </html> |
OLD | NEW |