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 05d321f0ac7fb78f4926a2ea66a42c2fc9e9936c..fc9e73b7d4e8d7b81825d19fd6946a7188b48062 100644 |
--- a/content/browser/resources/media/media_internals.html |
+++ b/content/browser/resources/media/media_internals.html |
@@ -1,28 +1,56 @@ |
-<!DOCTYPE HTML> |
-<html i18n-values="dir:textdirection;"> |
<!-- |
-Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+Copyright 2013 The Chromium Authors. All rights reserved. |
Use of this source code is governed by a BSD-style license that can be |
found in the LICENSE file. |
--> |
- <head> |
- <link rel="stylesheet" href="media_internals.css"> |
- <script src="chrome://resources/js/cr.js"></script> |
- <script src="chrome://resources/js/cr/ui.js"></script> |
- <script src="chrome://resources/js/util.js"></script> |
- <script src="chrome://media-internals/media_internals.js"></script> |
- <script src="chrome://media-internals/strings.js"></script> |
- <title>Media Internals</title> |
- </head> |
- <body> |
- <h2>Active media players:</h2> |
- <ul id="media-players"></ul> |
- <h2>Active audio streams:</h2> |
- <div id="audio-streams"></div> |
- <h2>Cached resources:</h2> |
- <div id="cache-entries"></div> |
- <script src="chrome://resources/js/i18n_template.js"></script> |
- <script src="chrome://resources/js/i18n_process.js"></script> |
- <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
- </body> |
+<!DOCTYPE html> |
+<html i18n-values="dir:textdirection"> |
+<head> |
+ <meta charset="utf-8"> |
+ <title i18n-content="Media Internals"></title> |
+ <link rel="stylesheet" href="media_internals.css"> |
+ <script src="chrome://resources/js/cr.js"></script> |
+</head> |
+ |
+<body> |
+ <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> |
+ </div> |
+ <div id="property-wrapper"> |
+ <h2>Properties</h2> |
+ <table id="property-table"> |
+ <thead> |
+ <tr> |
+ <td>Property Name</td> <td>Value</td> |
+ </tr> |
+ </thead> |
+ </table> |
+ <ul id="graphs"></ul> |
+ </div> |
+ <div id="log-wrapper"> |
+ <h2> |
+ Log |
+ </h2> |
+ <table id="log"> |
+ <thead> |
+ <tr> |
+ <td>Timestamp</td> |
+ <td>Property</td> |
+ <td>Value</td> |
+ </tr> |
+ </thead> |
+ <tbody></tbody> |
+ </table> |
+ </div> |
+ </div> |
+ <script src="chrome://media-internals/media_internals.js"></script> |
+</body> |
</html> |