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

Unified Diff: content/renderer/media/peer_connection_tracker.cc

Issue 2495983002: webrtc-internals: rename mediadescriptor label (Closed)
Patch Set: update AUTHORS Created 4 years 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
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/peer_connection_tracker.cc
diff --git a/content/renderer/media/peer_connection_tracker.cc b/content/renderer/media/peer_connection_tracker.cc
index 3e2dc702483711cdcbe025876c565dd167689214..ef1d23412b77191b421ce45491f6986073ce48cd 100644
--- a/content/renderer/media/peer_connection_tracker.cc
+++ b/content/renderer/media/peer_connection_tracker.cc
@@ -90,8 +90,8 @@ static std::string SerializeMediaStreamComponent(
static std::string SerializeMediaDescriptor(
const blink::WebMediaStream& stream) {
- std::string label = base::UTF16ToUTF8(base::StringPiece16(stream.id()));
- std::string result = "label: " + label;
+ std::string id = base::UTF16ToUTF8(base::StringPiece16(stream.id()));
+ std::string result = "id: " + id;
blink::WebVector<blink::WebMediaStreamTrack> tracks;
stream.audioTracks(tracks);
if (!tracks.isEmpty()) {
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698