| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <include src="cache_entry.js"/> | 5 <include src="cache_entry.js"/> |
| 6 <include src="disjoint_range_set.js"/> | 6 <include src="disjoint_range_set.js"/> |
| 7 <include src="event_list.js"/> | 7 <include src="event_list.js"/> |
| 8 <include src="item_store.js"/> | 8 <include src="item_store.js"/> |
| 9 <include src="media_player.js"/> | 9 <include src="media_player.js"/> |
| 10 <include src="metrics.js"/> | 10 <include src="metrics.js"/> |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 onMediaEvent: onMediaEvent | 272 onMediaEvent: onMediaEvent |
| 273 }; | 273 }; |
| 274 }); | 274 }); |
| 275 | 275 |
| 276 /** | 276 /** |
| 277 * Initialize everything once we have access to the DOM. | 277 * Initialize everything once we have access to the DOM. |
| 278 */ | 278 */ |
| 279 document.addEventListener('DOMContentLoaded', function() { | 279 document.addEventListener('DOMContentLoaded', function() { |
| 280 media.initialize(); | 280 media.initialize(); |
| 281 }); | 281 }); |
| OLD | NEW |