| Index: third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp
|
| diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp b/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp
|
| index 60e9411f6490a63a6a6e850413d1c8e6d34343dc..98a314d3c753aad2b98759a2142bc525fd8e9caf 100644
|
| --- a/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp
|
| +++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp
|
| @@ -35,19 +35,23 @@
|
| MediaStreamSource* MediaStreamSource::create(const String& id,
|
| StreamType type,
|
| const String& name,
|
| + bool remote,
|
| ReadyState readyState,
|
| bool requiresConsumer) {
|
| - return new MediaStreamSource(id, type, name, readyState, requiresConsumer);
|
| + return new MediaStreamSource(id, type, name, remote, readyState,
|
| + requiresConsumer);
|
| }
|
|
|
| MediaStreamSource::MediaStreamSource(const String& id,
|
| StreamType type,
|
| const String& name,
|
| + bool remote,
|
| ReadyState readyState,
|
| bool requiresConsumer)
|
| : m_id(id),
|
| m_type(type),
|
| m_name(name),
|
| + m_remote(remote),
|
| m_readyState(readyState),
|
| m_requiresConsumer(requiresConsumer) {}
|
|
|
|
|