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

Unified 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 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 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>
« 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