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 |
11 //<include src="error_util.js"> | 11 // <include src="error_util.js"> |
12 | 12 |
13 //<include src="../../file_manager/common/js/metrics_base.js"> | 13 // <include src="../../file_manager/common/js/metrics_base.js"> |
14 //<include src="video_player_metrics.js"> | 14 // <include src="video_player_metrics.js"> |
15 | 15 |
16 //<include src="../../file_manager/common/js/lru_cache.js"> | 16 // <include src="../../file_manager/common/js/lru_cache.js"> |
17 //<include src="../../image_loader/image_loader_client.js"> | 17 // <include src="../../image_loader/image_loader_client.js"> |
18 | 18 |
19 //<include src="../../../webui/resources/js/cr.js"> | 19 // <include src="../../../webui/resources/js/cr.js"> |
20 //<include src="../../../webui/resources/js/util.js"> | 20 // <include src="../../../webui/resources/js/util.js"> |
21 //<include src="../../../webui/resources/js/load_time_data.js"> | 21 // <include src="../../../webui/resources/js/load_time_data.js"> |
22 | 22 |
23 //<include src="../../../webui/resources/js/event_tracker.js"> | 23 // <include src="../../../webui/resources/js/event_tracker.js"> |
24 | 24 |
25 //<include src="../../../webui/resources/js/cr/ui.js"> | 25 // <include src="../../../webui/resources/js/cr/ui.js"> |
26 //<include src="../../../webui/resources/js/cr/event_target.js"> | 26 // <include src="../../../webui/resources/js/cr/event_target.js"> |
27 | 27 |
28 //<include src="../../../webui/resources/js/cr/ui/array_data_model.js"> | 28 // <include src="../../../webui/resources/js/cr/ui/array_data_model.js"> |
29 //<include src="../../../webui/resources/js/cr/ui/position_util.js"> | 29 // <include src="../../../webui/resources/js/cr/ui/position_util.js"> |
30 //<include src="../../../webui/resources/js/cr/ui/menu_item.js"> | 30 // <include src="../../../webui/resources/js/cr/ui/menu_item.js"> |
31 //<include src="../../../webui/resources/js/cr/ui/menu.js"> | 31 // <include src="../../../webui/resources/js/cr/ui/menu.js"> |
32 //<include src="../../../webui/resources/js/cr/ui/menu_button.js"> | 32 // <include src="../../../webui/resources/js/cr/ui/menu_button.js"> |
33 //<include src="../../../webui/resources/js/cr/ui/context_menu_handler.js"> | 33 // <include src="../../../webui/resources/js/cr/ui/context_menu_handler.js"> |
34 | 34 |
35 (function() { | 35 (function() { |
36 'use strict'; | 36 'use strict'; |
37 | 37 |
38 //<include src="../../../webui/resources/js/load_time_data.js"> | 38 // <include src="../../../webui/resources/js/load_time_data.js"> |
39 //<include src="../../../webui/resources/js/i18n_template_no_process.js"> | 39 // <include src="../../../webui/resources/js/i18n_template_no_process.js"> |
40 | 40 |
41 //<include src="../../file_manager/common/js/async_util.js"> | 41 // <include src="../../file_manager/common/js/async_util.js"> |
42 //<include src="../../file_manager/common/js/file_type.js"> | 42 // <include src="../../file_manager/common/js/file_type.js"> |
43 //<include src="../../file_manager/common/js/util.js"> | 43 // <include src="../../file_manager/common/js/util.js"> |
44 //<include src="../../file_manager/common/js/volume_manager_common.js"> | 44 // <include src="../../file_manager/common/js/volume_manager_common.js"> |
45 //<include src="../../file_manager/foreground/js/mouse_inactivity_watcher.js"> | 45 // <include src="../../file_manager/foreground/js/mouse_inactivity_watcher.js"> |
46 //<include src="../../file_manager/foreground/js/volume_manager_wrapper.js"> | 46 // <include src="../../file_manager/foreground/js/volume_manager_wrapper.js"> |
47 | 47 |
48 //<include src="cast/cast_extension_discoverer.js"> | 48 // <include src="cast/cast_extension_discoverer.js"> |
49 //<include src="cast/cast_video_element.js"> | 49 // <include src="cast/cast_video_element.js"> |
50 //<include src="cast/media_manager.js"> | 50 // <include src="cast/media_manager.js"> |
51 //<include src="cast/caster.js"> | 51 // <include src="cast/caster.js"> |
52 | 52 |
53 //<include src="media_controls.js"> | 53 // <include src="media_controls.js"> |
54 | 54 |
55 //<include src="video_player.js"> | 55 // <include src="video_player.js"> |
56 | 56 |
57 window.unload = unload; | 57 window.unload = unload; |
58 | 58 |
59 })(); | 59 })(); |
OLD | NEW |