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

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

Issue 23769009: Removes the --enable-new-media-internals flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed unused files from old-media-internals Created 7 years, 3 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
OLDNEW
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;">
3 <!-- 1 <!--
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 4 found in the LICENSE file.
7 --> 5 -->
8 <head> 6 <!DOCTYPE html>
9 <link rel="stylesheet" href="media_internals.css"> 7 <html i18n-values="dir:textdirection">
10 <script src="chrome://resources/js/cr.js"></script> 8 <head>
11 <script src="chrome://resources/js/cr/ui.js"></script> 9 <meta charset="utf-8">
12 <script src="chrome://resources/js/util.js"></script> 10 <title i18n-content="Media Internals"></title>
13 <script src="chrome://media-internals/media_internals.js"></script> 11 <link rel="stylesheet" href="media_internals.css">
14 <script src="chrome://media-internals/strings.js"></script> 12 <script src="chrome://resources/js/cr.js"></script>
15 <title>Media Internals</title> 13 </head>
16 </head> 14
17 <body> 15 <body>
18 <h2>Active media players:</h2> 16 <div id="container">
19 <ul id="media-players"></ul> 17 <div id="list-wrapper">
20 <h2>Active audio streams:</h2> 18 <div id="player-list-wrapper">
21 <div id="audio-streams"></div> 19 <h2>Players</h2>
22 <h2>Cached resources:</h2> 20 <ul id="player-list"></ul>
23 <div id="cache-entries"></div> 21 </div>
24 <script src="chrome://resources/js/i18n_template.js"></script> 22 <div id="audio-stream-list-wrapper">
25 <script src="chrome://resources/js/i18n_process.js"></script> 23 <h2>Audio Streams</h2>
26 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 24 <ul id="audio-stream-list"></ul>
27 </body> 25 </div>
26 </div>
27 <div id="property-wrapper">
28 <h2>Properties</h2>
29 <table id="property-table">
30 <thead>
31 <tr>
32 <td>Property Name</td> <td>Value</td>
33 </tr>
34 </thead>
35 </table>
36 <ul id="graphs"></ul>
37 </div>
38 <div id="log-wrapper">
39 <h2>
40 Log
41 </h2>
42 <table id="log">
43 <thead>
44 <tr>
45 <td>Timestamp</td>
46 <td>Property</td>
47 <td>Value</td>
48 </tr>
49 </thead>
50 <tbody></tbody>
51 </table>
52 </div>
53 </div>
54 <script src="chrome://media-internals/media_internals.js"></script>
55 </body>
28 </html> 56 </html>
OLDNEW
« no previous file with comments | « content/browser/resources/media/media_internals.css ('k') | content/browser/resources/media/media_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698