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

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

Issue 921043004: [Gallery app] Make the background page use BackgroundBase class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 10 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
« no previous file with comments | « ui/file_manager/gallery/js/gallery.js ('k') | ui/file_manager/gallery/manifest.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 //<include src="../../file_manager/foreground/js/metrics_base.js"> 11 //<include src="../../file_manager/foreground/js/metrics_base.js">
12 //<include src="../../file_manager/foreground/js/metrics.js"> 12 //<include src="../../file_manager/foreground/js/metrics.js">
13 13
14 //<include src="../../file_manager/common/js/lru_cache.js"> 14 //<include src="../../file_manager/common/js/lru_cache.js">
15 //<include src="../../image_loader/image_loader_client.js"> 15 //<include src="../../image_loader/image_loader_client.js">
16 16
17 //<include src="../../../webui/resources/js/cr.js"> 17 //<include src="../../../webui/resources/js/cr.js">
18 //<include src="../../../webui/resources/js/util.js"> 18 //<include src="../../../webui/resources/js/util.js">
19 //<include src="../../../webui/resources/js/event_tracker.js"> 19 //<include src="../../../webui/resources/js/event_tracker.js">
20 //<include src="../../../webui/resources/js/load_time_data.js"> 20 //<include src="../../../webui/resources/js/load_time_data.js">
21 //<include src="../../../webui/resources/js/i18n_template_no_process.js">
21 22
22 //<include src="../../../webui/resources/js/cr/ui.js"> 23 //<include src="../../../webui/resources/js/cr/ui.js">
23 //<include src="../../../webui/resources/js/cr/event_target.js"> 24 //<include src="../../../webui/resources/js/cr/event_target.js">
24 //<include src="../../../webui/resources/js/cr/ui/touch_handler.js"> 25 //<include src="../../../webui/resources/js/cr/ui/touch_handler.js">
25 //<include src="../../../webui/resources/js/cr/ui/array_data_model.js"> 26 //<include src="../../../webui/resources/js/cr/ui/array_data_model.js">
26 //<include src="../../../webui/resources/js/cr/ui/dialogs.js"> 27 //<include src="../../../webui/resources/js/cr/ui/dialogs.js">
27 //<include src="../../../webui/resources/js/cr/ui/list_item.js"> 28 //<include src="../../../webui/resources/js/cr/ui/list_item.js">
28 //<include src="../../../webui/resources/js/cr/ui/list_selection_model.js"> 29 //<include src="../../../webui/resources/js/cr/ui/list_selection_model.js">
29 //<include 30 //<include
30 // src="../../../webui/resources/js/cr/ui/list_single_selection_model.js"> 31 // src="../../../webui/resources/js/cr/ui/list_single_selection_model.js">
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 //<include src="ribbon.js"> 72 //<include src="ribbon.js">
72 //<include src="slide_mode.js"> 73 //<include src="slide_mode.js">
73 74
74 // Exports 75 // Exports
75 window.ImageUtil = ImageUtil; 76 window.ImageUtil = ImageUtil;
76 window.ImageUtil.metrics = metrics; 77 window.ImageUtil.metrics = metrics;
77 window.Gallery = Gallery; 78 window.Gallery = Gallery;
78 window.util = util; 79 window.util = util;
79 80
80 })(); 81 })();
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/js/gallery.js ('k') | ui/file_manager/gallery/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698