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

Unified Diff: content/browser/resources/media/media_internals.html

Issue 643343004: Video Capture Capabilities available on chrome://media-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 1f762305598971b8aaedee3535d81135327d3c6a..d8b9f1cea12d79a860c0567fe5a8e64602c08983 100644
--- a/content/browser/resources/media/media_internals.html
+++ b/content/browser/resources/media/media_internals.html
@@ -36,7 +36,7 @@ found in the LICENSE file.
<div id="property-wrapper">
<h2>
<span id="property-name"></span> Properties
- <button id="copy-button">copy to clipboard</button>
+ <button id="copy-button">Copy to clipboard</button>
</h2>
<table id="property-table">
<thead>
@@ -64,6 +64,24 @@ found in the LICENSE file.
<tbody></tbody>
</table>
</div>
+ <div id="video-capture-capabilities-container">
+ <h2>Video Capture Device Capabilities</h2>
+ <button id="video-capture-capabilities-copy-button">
+ Copy to clipboard</button>
+ <table id="video-capture-capabilities-table">
+ <thead>
+ <tr>
+ <th>Device ID</th>
+ <th>Device Name</th>
+ <th>Formats</th>
+ <th>Capture API</th>
+ </tr>
+ </thead>
+ <tbody id="video-capture-capabilities-tbody">
+
+ <tbody>
+ </table>
+ </div>
</div>
<script src="media_internals.js"></script>
</body>

Powered by Google App Engine
This is Rietveld 408576698