X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fplatform%2Fmediastream%2FMediaStreamSource.cpp;h=80b2a5b1275ffc53919e2a7bf0a8df2f643ea75c;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=6f69127bc64d616f444bbabfb7a2495a657f13a7;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp b/src/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp index 6f69127..80b2a5b 100644 --- a/src/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp +++ b/src/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp @@ -34,15 +34,17 @@ namespace blink { -PassRefPtr MediaStreamSource::create(const String& id, Type type, const String& name, ReadyState readyState, bool requiresConsumer) +PassRefPtr MediaStreamSource::create(const String& id, Type type, const String& name, bool remote, bool readonly, ReadyState readyState, bool requiresConsumer) { - return adoptRef(new MediaStreamSource(id, type, name, readyState, requiresConsumer)); + return adoptRef(new MediaStreamSource(id, type, name, remote, readonly, readyState, requiresConsumer)); } -MediaStreamSource::MediaStreamSource(const String& id, Type type, const String& name, ReadyState readyState, bool requiresConsumer) +MediaStreamSource::MediaStreamSource(const String& id, Type type, const String& name, bool remote, bool readonly, ReadyState readyState, bool requiresConsumer) : m_id(id) , m_type(type) , m_name(name) + , m_remote(remote) + , m_readonly(readonly) , m_readyState(readyState) , m_requiresConsumer(requiresConsumer) {