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

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

Issue 23536020: Adds cache and buffer graphs to the properties pane. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
3 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
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <html i18n-values="dir:textdirection"> 7 <html i18n-values="dir:textdirection">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="Media Internals"></title> 10 <title i18n-content="Media Internals"></title>
11 <link rel="stylesheet" href="media_internals.css"> 11 <link rel="stylesheet" href="media_internals.css">
12 <script src="chrome://resources/js/cr.js"></script>
12 </head> 13 </head>
13 14
14 <body> 15 <body>
15 <div id="container"> 16 <div id="container">
16 <div id="list-wrapper"> 17 <div id="list-wrapper">
17 <div id="player-list-wrapper"> 18 <div id="player-list-wrapper">
18 <h2>Players</h2> 19 <h2>Players</h2>
19 <ul id="player-list"></ul> 20 <ul id="player-list"></ul>
20 </div> 21 </div>
21 <div id="audio-stream-list-wrapper"> 22 <div id="audio-stream-list-wrapper">
22 <h2>Audio Streams</h2> 23 <h2>Audio Streams</h2>
23 <ul id="audio-stream-list"></ul> 24 <ul id="audio-stream-list"></ul>
24 </div> 25 </div>
25 </div> 26 </div>
26 <div id="property-wrapper"> 27 <div id="property-wrapper">
27 <h2>Properties</h2> 28 <h2>Properties</h2>
28 <table id="property-table"> 29 <table id="property-table">
29 <thead> 30 <thead>
30 <tr> 31 <tr>
31 <td>Property Name</td> <td>Value</td> 32 <td>Property Name</td> <td>Value</td>
32 </tr> 33 </tr>
33 </thead> 34 </thead>
34 </table> 35 </table>
36 <ul id="graphs"></ul>
35 </div> 37 </div>
36 <div id="log-wrapper"> 38 <div id="log-wrapper">
37 <h2> 39 <h2>
38 Log 40 Log
39 </h2> 41 </h2>
40 <table id="log"> 42 <table id="log">
41 <thead> 43 <thead>
42 <tr> 44 <tr>
43 <td>Timestamp</td> 45 <td>Timestamp</td>
44 <td>Property</td> 46 <td>Property</td>
45 <td>Value</td> 47 <td>Value</td>
46 </tr> 48 </tr>
47 </thead> 49 </thead>
48 <tbody> 50 <tbody></tbody>
49 </tbody>
50 </table> 51 </table>
51 </div> 52 </div>
52 </div> 53 </div>
53 <script src="chrome://media-internals/media_internals.js"></script> 54 <script src="chrome://media-internals/media_internals.js"></script>
54 </body> 55 </body>
55 </html> 56 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698