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

Unified Diff: content/browser/resources/media/tab_view.js

Issue 405683003: Adds the UserMedia requests to the UI of chrome://webrtc-internals. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: content/browser/resources/media/tab_view.js
diff --git a/content/browser/resources/media/tab_view.js b/content/browser/resources/media/tab_view.js
index 6fc8d73410de4e97ca35d7218f5c0613e2123f02..274336ee46504834f00a1bbf153c5121dad5bfdd 100644
--- a/content/browser/resources/media/tab_view.js
+++ b/content/browser/resources/media/tab_view.js
@@ -50,9 +50,9 @@ var TabView = (function() {
if (this.tabElements_[id])
throw 'Tab already exists: ' + id;
- var head = document.createElement('div');
+ var head = document.createElement('span');
head.className = this.TAB_HEAD_CLASS_;
- head.textContent = title + ' [' + id + ']';
+ head.textContent = title;
head.title = title;
this.headBar_.appendChild(head);
head.addEventListener('click', this.switchTab_.bind(this, id));
« no previous file with comments | « content/browser/media/webrtc_internals_browsertest.cc ('k') | content/browser/resources/media/webrtc_internals.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698