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

Side by Side Diff: content/browser/resources/media/media_internals.js

Issue 12153002: Move chrome://media-internals to content. This allows us to hide implementation details from the pu… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698