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

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

Issue 68103011: Adds URL to each peerconnection tab title on webrtc-internals. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 6 years, 10 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 953ec2fae1149ad8f04e535c0f17ecbcf96fab56..6fc8d73410de4e97ca35d7218f5c0613e2123f02 100644
--- a/content/browser/resources/media/tab_view.js
+++ b/content/browser/resources/media/tab_view.js
@@ -52,7 +52,7 @@ var TabView = (function() {
var head = document.createElement('div');
head.className = this.TAB_HEAD_CLASS_;
- head.textContent = id;
+ head.textContent = title + ' [' + id + ']';
head.title = title;
this.headBar_.appendChild(head);
head.addEventListener('click', this.switchTab_.bind(this, id));
« no previous file with comments | « content/browser/resources/media/stats_table.js ('k') | content/browser/resources/media/webrtc_internals.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698