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/foreground/js/metrics_base.js"> |
| 14 //<include src="video_player_metrics.js"> |
| 15 |
13 //<include src="../../../webui/resources/js/cr.js"> | 16 //<include src="../../../webui/resources/js/cr.js"> |
14 //<include src="../../../webui/resources/js/load_time_data.js"> | 17 //<include src="../../../webui/resources/js/load_time_data.js"> |
15 | 18 |
16 //<include src="../../../webui/resources/js/event_tracker.js"> | 19 //<include src="../../../webui/resources/js/event_tracker.js"> |
17 | 20 |
18 //<include src="../../../webui/resources/js/cr/ui.js"> | 21 //<include src="../../../webui/resources/js/cr/ui.js"> |
19 //<include src="../../../webui/resources/js/cr/event_target.js"> | 22 //<include src="../../../webui/resources/js/cr/event_target.js"> |
20 | 23 |
21 //<include src="../../../webui/resources/js/cr/ui/position_util.js"> | 24 //<include src="../../../webui/resources/js/cr/ui/position_util.js"> |
22 //<include src="../../../webui/resources/js/cr/ui/menu_item.js"> | 25 //<include src="../../../webui/resources/js/cr/ui/menu_item.js"> |
(...skipping 16 matching lines...) Expand all Loading... |
39 //<include src="cast/media_manager.js"> | 42 //<include src="cast/media_manager.js"> |
40 //<include src="cast/caster.js"> | 43 //<include src="cast/caster.js"> |
41 | 44 |
42 //<include src="media_controls.js"> | 45 //<include src="media_controls.js"> |
43 | 46 |
44 //<include src="video_player.js"> | 47 //<include src="video_player.js"> |
45 | 48 |
46 window.unload = unload; | 49 window.unload = unload; |
47 | 50 |
48 })(); | 51 })(); |
OLD | NEW |