Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: ui/file_manager/gallery/js/gallery_scripts.js

Issue 504073002: Files.app: Move VP/Galllery related files to dedicate folders (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 })();
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/images/200/error.png ('k') | ui/file_manager/video_player/css/media_controls.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698