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

Unified Diff: Source/modules/mediastream/MediaStreamTrack.cpp

Issue 569613002: Add the possibility to specify MediaStreamTrack::remote when creating a track. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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: Source/modules/mediastream/MediaStreamTrack.cpp
diff --git a/Source/modules/mediastream/MediaStreamTrack.cpp b/Source/modules/mediastream/MediaStreamTrack.cpp
index d12d45b5d23cdcfef64c59dae0c54415fb7de17c..829d7331c056c5548d3a0a1f8a84e36669e7cb31 100644
--- a/Source/modules/mediastream/MediaStreamTrack.cpp
+++ b/Source/modules/mediastream/MediaStreamTrack.cpp
@@ -109,6 +109,11 @@ bool MediaStreamTrack::muted() const
return m_component->muted();
}
+bool MediaStreamTrack::remote() const
+{
+ return m_component->remote();
+}
+
String MediaStreamTrack::readyState() const
{
if (ended())

Powered by Google App Engine
This is Rietveld 408576698