OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 var media = {}; | 5 var media = {}; |
6 | 6 |
| 7 <include src="main.js"/> |
7 <include src="util.js"/> | 8 <include src="util.js"/> |
| 9 <include src="../cache_entry.js"/> |
| 10 <include src="../disjoint_range_set.js"/> |
8 <include src="player_info.js"/> | 11 <include src="player_info.js"/> |
9 <include src="player_manager.js"/> | 12 <include src="player_manager.js"/> |
10 <include src="client_renderer.js"/> | 13 <include src="client_renderer.js"/> |
11 <include src="main.js"/> | |
12 | 14 |
13 media.initialize(new Manager(new ClientRenderer())); | 15 media.initialize(new Manager(new ClientRenderer())); |
OLD | NEW |