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

Side by Side Diff: content/browser/resources/media/new/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
(Empty)
1 <!--
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
4 found in the LICENSE file.
5 -->
6 <!DOCTYPE html>
7 <html i18n-values="dir:textdirection">
8 <head>
9 <meta charset="utf-8">
10 <title i18n-content="Media Internals"></title>
11 <link rel="stylesheet" href="media_internals.css">
12 <script src="chrome://resources/js/cr.js"></script>
13 </head>
14
15 <body>
16 <div id="container">
17 <div id="list-wrapper">
18 <div id="player-list-wrapper">
19 <h2>Players</h2>
20 <ul id="player-list"></ul>
21 </div>
22 <div id="audio-stream-list-wrapper">
23 <h2>Audio Streams</h2>
24 <ul id="audio-stream-list"></ul>
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>
56 </html>
OLDNEW
« no previous file with comments | « content/browser/resources/media/new/media_internals.css ('k') | content/browser/resources/media/new/media_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698