| Index: Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| diff --git a/Source/platform/mediastream/MediaStreamDescriptor.cpp b/Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| index 00cd60bcf270e12a73c8666957327ec762c8978e..3e7e71b7d0e26950867ea632d51cdce210055476 100644
|
| --- a/Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| +++ b/Source/platform/mediastream/MediaStreamDescriptor.cpp
|
| @@ -102,6 +102,7 @@ void MediaStreamDescriptor::removeRemoteTrack(MediaStreamComponent* component)
|
| MediaStreamDescriptor::MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources)
|
| : m_client(0)
|
| , m_id(id)
|
| + , m_active(true)
|
| , m_ended(false)
|
| {
|
| ASSERT(m_id.length());
|
| @@ -115,6 +116,7 @@ MediaStreamDescriptor::MediaStreamDescriptor(const String& id, const MediaStream
|
| MediaStreamDescriptor::MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& audioComponents, const MediaStreamComponentVector& videoComponents)
|
| : m_client(0)
|
| , m_id(id)
|
| + , m_active(true)
|
| , m_ended(false)
|
| {
|
| ASSERT(m_id.length());
|
|
|