| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- | 2 <!-- |
| 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2011 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 <script src="js/util.js"></script> | 89 <script src="js/util.js"></script> |
| 90 <script src="js/file_copy_manager.js"></script> | 90 <script src="js/file_copy_manager.js"></script> |
| 91 <script src="js/file_manager.js"></script> | 91 <script src="js/file_manager.js"></script> |
| 92 <script src="js/file_manager_pyauto.js"></script> | 92 <script src="js/file_manager_pyauto.js"></script> |
| 93 <script src="js/main.js"></script> | 93 <script src="js/main.js"></script> |
| 94 <script src="js/metadata_provider.js"></script> | 94 <script src="js/metadata_provider.js"></script> |
| 95 | 95 |
| 96 <!-- For accurate load performance tracking | 96 <!-- For accurate load performance tracking |
| 97 place all scripts above this line --> | 97 place all scripts above this line --> |
| 98 <script> | 98 <script> |
| 99 metrics.recordTime('Load.Script'); | 99 metrics.recordInterval('Load.Script'); |
| 100 </script> | 100 </script> |
| 101 | 101 |
| 102 <!-- We have to set some default title, or chrome will use the page | 102 <!-- We have to set some default title, or chrome will use the page |
| 103 -- name. As soon as we init and change to a directory, we'll use | 103 -- name. As soon as we init and change to a directory, we'll use |
| 104 -- the directory as the page title. Until then, have a unicode glyph | 104 -- the directory as the page title. Until then, have a unicode glyph |
| 105 -- of a tape reel. | 105 -- of a tape reel. |
| 106 --> | 106 --> |
| 107 <title>✇</title> | 107 <title>✇</title> |
| 108 </head> | 108 </head> |
| 109 <body i18n-values=".style.fontFamily:WEB_FONT_FAMILY; | 109 <body i18n-values=".style.fontFamily:WEB_FONT_FAMILY; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 visibleif='this.dialogType_ == "saveas-file"'> | 174 visibleif='this.dialogType_ == "saveas-file"'> |
| 175 <div class=horizontal-spacer></div> | 175 <div class=horizontal-spacer></div> |
| 176 <button class=ok disabled tabindex=2>[OK]</button> | 176 <button class=ok disabled tabindex=2>[OK]</button> |
| 177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL | 177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL |
| 178 >[CANCEL]</button> | 178 >[CANCEL]</button> |
| 179 </div> | 179 </div> |
| 180 | 180 |
| 181 <script>init();</script> | 181 <script>init();</script> |
| 182 </body> | 182 </body> |
| 183 </html> | 183 </html> |
| OLD | NEW |