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

Unified Diff: content/renderer/media/user_media_client_impl.cc

Issue 2425703002: Remove |remote| and |readonly| members of MediaStreamTrack (Closed)
Patch Set: Fixed webkit_tests Created 3 years, 10 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: content/renderer/media/user_media_client_impl.cc
diff --git a/content/renderer/media/user_media_client_impl.cc b/content/renderer/media/user_media_client_impl.cc
index d8cc904fc1f0e9cd3680f0c62be5429582d8dd1a..a87ebf9b460fb37585ea4ceeb8fc6d7fe5769c31 100644
--- a/content/renderer/media/user_media_client_impl.cc
+++ b/content/renderer/media/user_media_client_impl.cc
@@ -992,8 +992,7 @@ blink::WebMediaStreamSource UserMediaClientImpl::FindOrInitializeSourceObject(
blink::WebMediaStreamSource source;
source.initialize(blink::WebString::fromUTF8(device.device.id), type,
- blink::WebString::fromUTF8(device.device.name),
- false /* remote */);
+ blink::WebString::fromUTF8(device.device.name));
DVLOG(1) << "Initialize source object :"
<< "id = " << source.id().utf8()

Powered by Google App Engine
This is Rietveld 408576698