| 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> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <script> | 9 <script> |
| 10 var css = | 10 var css = |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 } | 63 } |
| 64 | 64 |
| 65 if (isHarness) | 65 if (isHarness) |
| 66 document.write('<script src="js/mock_chrome.js"><\57script>'); | 66 document.write('<script src="js/mock_chrome.js"><\57script>'); |
| 67 })(); | 67 })(); |
| 68 | 68 |
| 69 </script> | 69 </script> |
| 70 | 70 |
| 71 <link rel="stylesheet" href="css/file_manager.css"></link> | 71 <link rel="stylesheet" href="css/file_manager.css"></link> |
| 72 | 72 |
| 73 <link rel="stylesheet" href="js/image_editor/image_editor.css"></link> | |
| 74 <script src="js/image_editor/image_util.js"></script> | |
| 75 <script src="js/image_editor/image_buffer.js"></script> | |
| 76 <script src="js/image_editor/image_editor.js"></script> | |
| 77 <script src="js/image_editor/image_transform.js"></script> | |
| 78 <script src="js/image_editor/image_adjust.js"></script> | |
| 79 | |
| 80 <script src="js/image_editor/image_encoder.js"></script> | |
| 81 <script src="js/image_editor/exif_encoder.js"></script> | |
| 82 | |
| 83 | |
| 84 <script src="js/util.js"></script> | 73 <script src="js/util.js"></script> |
| 85 <script src="js/file_manager.js"></script> | 74 <script src="js/file_manager.js"></script> |
| 86 <script src="js/main.js"></script> | 75 <script src="js/main.js"></script> |
| 87 | 76 |
| 88 <!-- We have to set some default title, or chrome will use the page | 77 <!-- We have to set some default title, or chrome will use the page |
| 89 -- name. As soon as we init and change to a directory, we'll use | 78 -- name. As soon as we init and change to a directory, we'll use |
| 90 -- the directory as the page title. Until then, have a unicode glyph | 79 -- the directory as the page title. Until then, have a unicode glyph |
| 91 -- of a tape reel. | 80 -- of a tape reel. |
| 92 --> | 81 --> |
| 93 <title>✇</title> | 82 <title>✇</title> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 visibleif='this.dialogType_ == "saveas-file"'> | 137 visibleif='this.dialogType_ == "saveas-file"'> |
| 149 <div class=horizontal-spacer></div> | 138 <div class=horizontal-spacer></div> |
| 150 <button class=ok disabled tabindex=2>[OK]</button> | 139 <button class=ok disabled tabindex=2>[OK]</button> |
| 151 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL | 140 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL |
| 152 >[CANCEL]</button> | 141 >[CANCEL]</button> |
| 153 </div> | 142 </div> |
| 154 | 143 |
| 155 <script>init();</script> | 144 <script>init();</script> |
| 156 </body> | 145 </body> |
| 157 </html> | 146 </html> |
| OLD | NEW |