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

Side by Side Diff: chrome/browser/resources/media_internals.html

Issue 10821058: Handle no volume in chrome://media-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/media_internals/media_internals.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <!-- 3 <!--
4 Copyright (c) 2011 The Chromium Authors. All rights reserved. 4 Copyright (c) 2011 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <link rel="stylesheet" href="media_internals/media_internals.css" /> 9 <link rel="stylesheet" href="media_internals/media_internals.css" />
10 <script src="chrome://resources/js/cr.js"></script> 10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/ui.js"></script> 11 <script src="chrome://resources/js/cr/ui.js"></script>
12 <script src="chrome://resources/js/util.js"></script>
James Hawkins 2012/07/31 16:49:07 util.js is already included in the src. This shou
sail 2012/07/31 16:51:51 ahh, that's actually including chrome/browser/reso
James Hawkins 2012/07/31 16:52:34 Gotcha, I should have read more carefully. SLGTM
12 <script src="chrome://media-internals/media_internals.js"></script> 13 <script src="chrome://media-internals/media_internals.js"></script>
13 <script src="chrome://media-internals/strings.js"></script> 14 <script src="chrome://media-internals/strings.js"></script>
14 <title>Media Internals</title> 15 <title>Media Internals</title>
15 </head> 16 </head>
16 <body> 17 <body>
17 <h2>Active media players:</h2> 18 <h2>Active media players:</h2>
18 <ul id="media-players"></ul> 19 <ul id="media-players"></ul>
19 <h2>Active audio streams:</h2> 20 <h2>Active audio streams:</h2>
20 <div id="audio-streams"></div> 21 <div id="audio-streams"></div>
21 <h2>Cached resources:</h2> 22 <h2>Cached resources:</h2>
22 <div id="cache-entries"></div> 23 <div id="cache-entries"></div>
23 <script src="chrome://resources/js/i18n_template.js"></script> 24 <script src="chrome://resources/js/i18n_template.js"></script>
24 <script src="chrome://resources/js/i18n_process.js"></script> 25 <script src="chrome://resources/js/i18n_process.js"></script>
25 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 26 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
26 </body> 27 </body>
27 </html> 28 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/media_internals/media_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698