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

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

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <!-- 3 <!--
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 Copyright (c) 2012 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> 12 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://media-internals/media_internals.js"></script> 13 <script src="chrome://media-internals/media_internals.js"></script>
14 <script src="chrome://media-internals/strings.js"></script> 14 <script src="chrome://media-internals/strings.js"></script>
15 <title>Media Internals</title> 15 <title>Media Internals</title>
16 </head> 16 </head>
17 <body> 17 <body>
18 <h2>Active media players:</h2> 18 <h2>Active media players:</h2>
19 <ul id="media-players"></ul> 19 <ul id="media-players"></ul>
20 <h2>Active audio streams:</h2> 20 <h2>Active audio streams:</h2>
21 <div id="audio-streams"></div> 21 <div id="audio-streams"></div>
22 <h2>Cached resources:</h2> 22 <h2>Cached resources:</h2>
23 <div id="cache-entries"></div> 23 <div id="cache-entries"></div>
24 <script src="chrome://resources/js/i18n_template.js"></script> 24 <script src="chrome://resources/js/i18n_template.js"></script>
25 <script src="chrome://resources/js/i18n_process.js"></script> 25 <script src="chrome://resources/js/i18n_process.js"></script>
26 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 26 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
27 </body> 27 </body>
28 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698