| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // The include directives are put into Javascript-style comments to prevent | 5 // The include directives are put into Javascript-style comments to prevent |
| 6 // parsing errors in non-flattened mode. The flattener still sees them. | 6 // parsing errors in non-flattened mode. The flattener still sees them. |
| 7 // Note that this makes the flattener to comment out the first line of the | 7 // Note that this makes the flattener to comment out the first line of the |
| 8 // included file but that's all right since any javascript file should start | 8 // included file but that's all right since any javascript file should start |
| 9 // with a copyright comment anyway. | 9 // with a copyright comment anyway. |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 //<include src="image_editor/image_buffer.js"/> | 44 //<include src="image_editor/image_buffer.js"/> |
| 45 //<include src="image_editor/image_view.js"/> | 45 //<include src="image_editor/image_view.js"/> |
| 46 //<include src="image_editor/commands.js"/> | 46 //<include src="image_editor/commands.js"/> |
| 47 //<include src="image_editor/image_editor.js"/> | 47 //<include src="image_editor/image_editor.js"/> |
| 48 //<include src="image_editor/image_transform.js"/> | 48 //<include src="image_editor/image_transform.js"/> |
| 49 //<include src="image_editor/image_adjust.js"/> | 49 //<include src="image_editor/image_adjust.js"/> |
| 50 //<include src="image_editor/filter.js"/> | 50 //<include src="image_editor/filter.js"/> |
| 51 //<include src="image_editor/image_encoder.js"/> | 51 //<include src="image_editor/image_encoder.js"/> |
| 52 //<include src="image_editor/exif_encoder.js"/> | 52 //<include src="image_editor/exif_encoder.js"/> |
| 53 | 53 |
| 54 //<include src="../../file_manager/foreground/js/media/mouse_inactivity_watcher.
js"/> | |
| 55 //<include src="../../file_manager/foreground/js/metadata/metadata_cache.js"/> | 54 //<include src="../../file_manager/foreground/js/metadata/metadata_cache.js"/> |
| 55 //<include src="../../file_manager/foreground/js/mouse_inactivity_watcher.js"/> |
| 56 | 56 |
| 57 //<include src="../../file_manager/foreground/js/ui/file_manager_dialog_base.js"
> | 57 //<include src="../../file_manager/foreground/js/ui/file_manager_dialog_base.js"
> |
| 58 //<include src="../../file_manager/foreground/js/share_client.js"> | 58 //<include src="../../file_manager/foreground/js/share_client.js"> |
| 59 //<include src="../../file_manager/foreground/js/share_dialog.js"> | 59 //<include src="../../file_manager/foreground/js/share_dialog.js"> |
| 60 | 60 |
| 61 //<include src="gallery.js"> | 61 //<include src="gallery.js"> |
| 62 //<include src="gallery_item.js"> | 62 //<include src="gallery_item.js"> |
| 63 //<include src="mosaic_mode.js"> | 63 //<include src="mosaic_mode.js"> |
| 64 //<include src="slide_mode.js"> | 64 //<include src="slide_mode.js"> |
| 65 //<include src="ribbon.js"> | 65 //<include src="ribbon.js"> |
| 66 | 66 |
| 67 // Exports | 67 // Exports |
| 68 window.ImageUtil = ImageUtil; | 68 window.ImageUtil = ImageUtil; |
| 69 window.ImageUtil.metrics = metrics; | 69 window.ImageUtil.metrics = metrics; |
| 70 window.Gallery = Gallery; | 70 window.Gallery = Gallery; |
| 71 window.unload = unload; | 71 window.unload = unload; |
| 72 window.util = util; | 72 window.util = util; |
| 73 | 73 |
| 74 })(); | 74 })(); |
| OLD | NEW |