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

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

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
Index: third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.h
diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.h b/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.h
index 7e6dee03ded0e52f13b0d20ae4f2aa530be3ef05..9d423f062a49ec253205650489f3f163e4c5633e 100644
--- a/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.h
+++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamDescriptor.h
@@ -47,8 +47,8 @@ class PLATFORM_EXPORT MediaStreamDescriptorClient
virtual ~MediaStreamDescriptorClient() {}
virtual void streamEnded() = 0;
- virtual void addRemoteTrack(MediaStreamComponent*) = 0;
- virtual void removeRemoteTrack(MediaStreamComponent*) = 0;
+ virtual void addTrackByComponent(MediaStreamComponent*) = 0;
+ virtual void removeTrackByComponent(MediaStreamComponent*) = 0;
DEFINE_INLINE_VIRTUAL_TRACE() {}
};

Powered by Google App Engine
This is Rietveld 408576698