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

Unified Diff: components/test_runner/mock_webrtc_peer_connection_handler.cc

Issue 1915793002: Remove a |readonly| member of MediaStreamTrack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove a |readonly| argument in unittest files Created 4 years, 7 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
« no previous file with comments | « components/test_runner/mock_web_user_media_client.cc ('k') | content/public/renderer/media_stream_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/mock_webrtc_peer_connection_handler.cc
diff --git a/components/test_runner/mock_webrtc_peer_connection_handler.cc b/components/test_runner/mock_webrtc_peer_connection_handler.cc
index 465f414764f85d46bd3caecbe5d6804b9abc11bb..c47d2b91b3f47f5e427aec5cdb53b1f0fb6423a1 100644
--- a/components/test_runner/mock_webrtc_peer_connection_handler.cc
+++ b/components/test_runner/mock_webrtc_peer_connection_handler.cc
@@ -210,7 +210,7 @@ void MockWebRTCPeerConnectionHandler::UpdateRemoteStreams() {
webkit_source.initialize(local_audio_tracks[i].id(),
blink::WebMediaStreamSource::TypeAudio,
local_audio_tracks[i].id(),
- true /* remote */, true /* readonly */);
+ true /* remote */);
remote_audio_tracks[i].initialize(webkit_source);
}
@@ -223,7 +223,7 @@ void MockWebRTCPeerConnectionHandler::UpdateRemoteStreams() {
webkit_source.initialize(local_video_tracks[i].id(),
blink::WebMediaStreamSource::TypeVideo,
local_video_tracks[i].id(),
- true /* remote */, true /* readonly */);
+ true /* remote */);
remote_video_tracks[i].initialize(webkit_source);
}
« no previous file with comments | « components/test_runner/mock_web_user_media_client.cc ('k') | content/public/renderer/media_stream_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698