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

Unified Diff: chrome/browser/resources/media_internals/media_internals.css

Issue 7273089: Display active audio streams on chrome://media-internals. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removing silliness. Created 9 years, 5 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: chrome/browser/resources/media_internals/media_internals.css
diff --git a/chrome/browser/resources/media_internals/media_internals.css b/chrome/browser/resources/media_internals/media_internals.css
new file mode 100644
index 0000000000000000000000000000000000000000..7198d9bd4ded2e14b53cef5b4b699fa405d38d21
--- /dev/null
+++ b/chrome/browser/resources/media_internals/media_internals.css
@@ -0,0 +1,16 @@
+/* Copyright (c) 2011 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.
+ */
+
+.audio-stream[status='created'] {
+ color: blue;
+}
+
+.audio-stream[status='closed'] {
+ text-decoration: line-through;
+}
+
+.audio-stream[status='error'] {
+ color: red;
+}
« no previous file with comments | « chrome/browser/resources/media_internals/item_store.js ('k') | chrome/browser/resources/media_internals/media_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698