| Index: third_party/WebKit/Source/platform/mediastream/MediaStreamSource.h
|
| diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.h b/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.h
|
| index fcb2fb2f8a4aee7a56a217249cb2f8620aad0054..d3480c9cf3dd0b5a0c2d833aa200593d6bdcaaa6 100644
|
| --- a/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.h
|
| +++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.h
|
| @@ -71,12 +71,14 @@ class PLATFORM_EXPORT MediaStreamSource final
|
| static MediaStreamSource* create(const String& id,
|
| StreamType,
|
| const String& name,
|
| + bool remote,
|
| ReadyState = ReadyStateLive,
|
| bool requiresConsumer = false);
|
|
|
| const String& id() const { return m_id; }
|
| StreamType type() const { return m_type; }
|
| const String& name() const { return m_name; }
|
| + bool remote() const { return m_remote; }
|
|
|
| void setReadyState(ReadyState);
|
| ReadyState getReadyState() const { return m_readyState; }
|
| @@ -114,12 +116,14 @@ class PLATFORM_EXPORT MediaStreamSource final
|
| MediaStreamSource(const String& id,
|
| StreamType,
|
| const String& name,
|
| + bool remote,
|
| ReadyState,
|
| bool requiresConsumer);
|
|
|
| String m_id;
|
| StreamType m_type;
|
| String m_name;
|
| + bool m_remote;
|
| ReadyState m_readyState;
|
| bool m_requiresConsumer;
|
| HeapHashSet<WeakMember<Observer>> m_observers;
|
|
|