| Index: third_party/WebKit/Source/platform/exported/WebMediaStreamSource.cpp
 | 
| diff --git a/third_party/WebKit/Source/platform/exported/WebMediaStreamSource.cpp b/third_party/WebKit/Source/platform/exported/WebMediaStreamSource.cpp
 | 
| index 56e5e5a700545a3c0899526c25890e62a626dacc..65681024471e81f1e044491a2166a7a7282e23d8 100644
 | 
| --- a/third_party/WebKit/Source/platform/exported/WebMediaStreamSource.cpp
 | 
| +++ b/third_party/WebKit/Source/platform/exported/WebMediaStreamSource.cpp
 | 
| @@ -91,7 +91,15 @@
 | 
|                                        Type type,
 | 
|                                        const WebString& name) {
 | 
|    m_private = MediaStreamSource::create(
 | 
| -      id, static_cast<MediaStreamSource::StreamType>(type), name);
 | 
| +      id, static_cast<MediaStreamSource::StreamType>(type), name, false);
 | 
| +}
 | 
| +
 | 
| +void WebMediaStreamSource::initialize(const WebString& id,
 | 
| +                                      Type type,
 | 
| +                                      const WebString& name,
 | 
| +                                      bool remote) {
 | 
| +  m_private = MediaStreamSource::create(
 | 
| +      id, static_cast<MediaStreamSource::StreamType>(type), name, remote);
 | 
|  }
 | 
|  
 | 
|  WebString WebMediaStreamSource::id() const {
 | 
| @@ -107,6 +115,11 @@
 | 
|  WebString WebMediaStreamSource::name() const {
 | 
|    ASSERT(!m_private.isNull());
 | 
|    return m_private.get()->name();
 | 
| +}
 | 
| +
 | 
| +bool WebMediaStreamSource::remote() const {
 | 
| +  ASSERT(!m_private.isNull());
 | 
| +  return m_private.get()->remote();
 | 
|  }
 | 
|  
 | 
|  void WebMediaStreamSource::setReadyState(ReadyState state) {
 | 
| 
 |