| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 -- Use of this source code is governed by a BSD-style license that can be | 3 -- Use of this source code is governed by a BSD-style license that can be |
| 4 -- found in the LICENSE file. | 4 -- found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <script> | 7 <script> |
| 8 // These variables are referenced in the definition of EDITOR_MODES const | 8 // These variables are referenced in the definition of EDITOR_MODES const |
| 9 // variable of slide mode. | 9 // variable of slide mode. |
| 10 var ImageEditor = { | 10 var ImageEditorMode = { |
| 11 Mode: { | 11 InstantAutofix: function() {}, |
| 12 InstantAutofix: function() {}, | 12 Crop: function() {}, |
| 13 Crop: function() {}, | 13 Resize: function() {}, |
| 14 Resize: function() {}, | 14 Exposure: function() {}, |
| 15 Exposure: function() {}, | 15 OneClick: function() {} |
| 16 OneClick: function() {} | |
| 17 } | |
| 18 }; | 16 }; |
| 19 | 17 |
| 20 var Command = { | 18 var Command = { |
| 21 Rotate: function() {} | 19 Rotate: function() {} |
| 22 }; | 20 }; |
| 23 </script> | 21 </script> |
| 24 <script src="../../../webui/resources/js/assert.js"></script> | 22 <script src="../../../webui/resources/js/assert.js"></script> |
| 25 <script src="../../../webui/resources/js/cr.js"></script> | 23 <script src="../../../webui/resources/js/cr.js"></script> |
| 26 <script src="../../../webui/resources/js/cr/event_target.js"></script> | 24 <script src="../../../webui/resources/js/cr/event_target.js"></script> |
| 27 <script src="../../file_manager/common/js/unittest_util.js"></script> | 25 <script src="../../file_manager/common/js/unittest_util.js"></script> |
| 28 <script src="slide_mode.js"></script> | 26 <script src="slide_mode.js"></script> |
| 29 | 27 |
| 30 <script src="slide_mode_unittest.js"></script> | 28 <script src="slide_mode_unittest.js"></script> |
| OLD | NEW |