Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(975)

Unified Diff: third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp

Issue 2425703002: Remove |remote| and |readonly| members of MediaStreamTrack (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 0375fbdcec92c91862528b5ce3f637ac1ddfe02d..243d5ff928be93604efd6672e367d0d7559c180c 100644
--- a/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp
+++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp
@@ -31,27 +31,22 @@
#include "platform/mediastream/MediaStreamSource.h"
namespace blink {
-
MediaStreamSource* MediaStreamSource::create(const String& id,
mcasas 2016/10/17 18:08:25 Bring back l.34 from the LHS.
StreamType type,
const String& name,
- bool remote,
ReadyState readyState,
bool requiresConsumer) {
- return new MediaStreamSource(id, type, name, remote, readyState,
- requiresConsumer);
+ return new MediaStreamSource(id, type, name, 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) {}

Powered by Google App Engine
This is Rietveld 408576698