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

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

Issue 2727583007: HTMLMediaElement capture: teach the captured MStream to follow up source events (Closed)
Patch Set: haraken@ comments Created 3 years, 9 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 | « third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp b/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
index eaf52b9dcd3b2e2167a8cd4de49abccf98a89adc..102122f69d7bb5953c30344fb0658be686cbbdfe 100644
--- a/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
+++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.cpp
@@ -87,14 +87,14 @@ void MediaStreamDescriptor::removeComponent(MediaStreamComponent* component) {
void MediaStreamDescriptor::addRemoteTrack(MediaStreamComponent* component) {
if (m_client)
- m_client->addRemoteTrack(component);
+ m_client->addTrackByComponent(component);
else
addComponent(component);
}
void MediaStreamDescriptor::removeRemoteTrack(MediaStreamComponent* component) {
if (m_client)
- m_client->removeRemoteTrack(component);
+ m_client->removeTrackByComponent(component);
else
removeComponent(component);
}
« no previous file with comments | « third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698