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

Unified Diff: content/browser/resources/media/media_internals.html

Issue 68173025: Introduce new interface for MediaInternals updates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix JavaScript test. Use non-exported base. Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/resources/media/media_internals.html
diff --git a/content/browser/resources/media/media_internals.html b/content/browser/resources/media/media_internals.html
index 16d0c55a81b77d5efb0d369546b3b233b0dd8bb7..c555096be517422b4361a2aafbc6aad78d0b5fec 100644
--- a/content/browser/resources/media/media_internals.html
+++ b/content/browser/resources/media/media_internals.html
@@ -13,16 +13,24 @@ found in the LICENSE file.
</head>
<body>
- <textarea id="clipboard-textarea" class="hidden"></textarea>
+ <textarea id="clipboard-textarea" class="hiddenClipboard"></textarea>
<div id="container">
<div id="list-wrapper">
<div id="player-list-wrapper">
<h2>Players</h2>
<ul id="player-list"></ul>
</div>
- <div id="audio-stream-list-wrapper">
- <h2>Audio Streams</h2>
- <ul id="audio-stream-list"></ul>
+ <div id="audio-component-list-wrapper">
+ <h2>Input Controllers</h2>
+ <ul id="audio-input-controller-list"></ul>
+ </div>
+ <div id="audio-component-list-wrapper">
+ <h2>Output Controllers</h2>
+ <ul id="audio-output-controller-list"></ul>
+ </div>
+ <div id="audio-component-list-wrapper">
+ <h2>Output Streams</h2>
+ <ul id="audio-output-stream-list"></ul>
</div>
</div>
<div id="property-wrapper">
@@ -30,9 +38,11 @@ found in the LICENSE file.
<table id="property-table">
<thead>
<tr>
- <td>Property Name</td> <td>Value</td>
+ <th>Property</th>
+ <th>Value</th>
</tr>
</thead>
+ <tbody></tbody>
</table>
<ul id="graphs"></ul>
</div>
@@ -43,9 +53,9 @@ found in the LICENSE file.
<table id="log">
<thead>
<tr>
- <td>Timestamp</td>
- <td>Property</td>
- <td>Value</td>
+ <th class="timestamp">Timestamp</th>
+ <th>Property</th>
+ <th>Value</th>
</tr>
</thead>
<tbody></tbody>
« no previous file with comments | « content/browser/resources/media/media_internals.css ('k') | content/test/data/media/webui/integration_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698