| 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 type="text/javascript"> | 7 <script type="text/javascript"> |
| 8 var ContentMetadataProvider = {}; | 8 var ContentMetadataProvider = {}; |
| 9 var chrome = { | 9 var chrome = { |
| 10 fileManagerPrivate: { | 10 fileManagerPrivate: { |
| 11 getStrings: function(/* ignore */) {} | 11 getStrings: function(/* ignore */) {} |
| 12 }, | 12 }, |
| 13 runtime: { | 13 runtime: { |
| 14 getBackgroundPage: function(/* ignore */) {} | 14 getBackgroundPage: function(/* ignore */) {} |
| 15 } | 15 } |
| 16 }; | 16 }; |
| 17 </script> | 17 </script> |
| 18 | 18 |
| 19 <script src="../../../webui/resources/js/cr.js"></script> | 19 <script src="../../../webui/resources/js/cr.js"></script> |
| 20 <script src="../../../webui/resources/js/cr/event_target.js"></script> | 20 <script src="../../../webui/resources/js/cr/event_target.js"></script> |
| 21 <script src="../../../webui/resources/js/cr/ui/array_data_model.js"></script> | 21 <script src="../../../webui/resources/js/cr/ui/array_data_model.js"></script> |
| 22 <script src="../../file_manager/common/js/async_util.js"></script> | 22 <script src="../../file_manager/common/js/async_util.js"></script> |
| 23 <script src="../../file_manager/foreground/js/volume_manager_wrapper.js"></scrip
t> | 23 <script src="../../file_manager/foreground/js/volume_manager_wrapper.js"></scrip
t> |
| 24 <script src="gallery.js"></script> | 24 <script src="gallery.js"></script> |
| 25 <script src="gallery_constants.js"></script> |
| 25 | 26 |
| 26 <script src="dimmable_ui_controller.js"></script> | 27 <script src="dimmable_ui_controller.js"></script> |
| 27 | 28 |
| 28 <script src="dimmable_ui_controller_unittest.js"></script> | 29 <script src="dimmable_ui_controller_unittest.js"></script> |
| OLD | NEW |