| 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 ImageEditor = { |
| 11 Mode: { | 11 Mode: { |
| 12 InstantAutofix: function() {}, | 12 InstantAutofix: function() {}, |
| 13 Crop: function() {}, | 13 Crop: function() {}, |
| 14 Resize: function() {}, |
| 14 Exposure: function() {}, | 15 Exposure: function() {}, |
| 15 OneClick: function() {} | 16 OneClick: function() {} |
| 16 } | 17 } |
| 17 }; | 18 }; |
| 18 | 19 |
| 19 var Command = { | 20 var Command = { |
| 20 Rotate: function() {} | 21 Rotate: function() {} |
| 21 }; | 22 }; |
| 22 </script> | 23 </script> |
| 23 <script src="../../../webui/resources/js/assert.js"></script> | 24 <script src="../../../webui/resources/js/assert.js"></script> |
| 24 <script src="../../../webui/resources/js/cr.js"></script> | 25 <script src="../../../webui/resources/js/cr.js"></script> |
| 25 <script src="../../../webui/resources/js/cr/event_target.js"></script> | 26 <script src="../../../webui/resources/js/cr/event_target.js"></script> |
| 26 <script src="../../file_manager/common/js/unittest_util.js"></script> | 27 <script src="../../file_manager/common/js/unittest_util.js"></script> |
| 27 <script src="slide_mode.js"></script> | 28 <script src="slide_mode.js"></script> |
| 28 | 29 |
| 29 <script src="slide_mode_unittest.js"></script> | 30 <script src="slide_mode_unittest.js"></script> |
| OLD | NEW |