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

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

Issue 2425703002: Remove |remote| and |readonly| members of MediaStreamTrack (Closed)
Patch Set: Remove |remote| and |readonly| members of MediaStreamTrack 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: 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 d4ea066fe24d555ee773a800d50907f67ab4b942..9c1c0270cd40e6b85f567f8170cadf8095c993cb 100644
--- a/content/renderer/media/user_media_client_impl.cc
+++ b/content/renderer/media/user_media_client_impl.cc
@@ -512,11 +512,8 @@ void UserMediaClientImpl::InitializeSourceObject(
return;
}
- webkit_source->initialize(
- base::UTF8ToUTF16(device.device.id),
- type,
- base::UTF8ToUTF16(device.device.name),
- false /* remote */);
+ webkit_source->initialize(base::UTF8ToUTF16(device.device.id), type,
+ base::UTF8ToUTF16(device.device.name));
DVLOG(1) << "Initialize source object :"
<< "id = " << webkit_source->id().utf8()

Powered by Google App Engine
This is Rietveld 408576698