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

Unified Diff: Source/Platform/chromium/public/WebMediaStream.h

Issue 13844006: MediaStream API: Moving Add/Remove track from WebMediaStreamCenterClient to WebMediaStream (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 8 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 | « no previous file | Source/Platform/chromium/public/WebMediaStreamCenterClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/Platform/chromium/public/WebMediaStream.h
diff --git a/Source/Platform/chromium/public/WebMediaStream.h b/Source/Platform/chromium/public/WebMediaStream.h
index ecd586d6470d10c19a8acb20dfcac077a0427544..e52c14c2dee21019f93c1e0af0036be0a82edb68 100644
--- a/Source/Platform/chromium/public/WebMediaStream.h
+++ b/Source/Platform/chromium/public/WebMediaStream.h
@@ -76,6 +76,9 @@ public:
WEBKIT_EXPORT void audioTracks(WebVector<WebMediaStreamTrack>&) const;
WEBKIT_EXPORT void videoTracks(WebVector<WebMediaStreamTrack>&) const;
+ WEBKIT_EXPORT void addTrack(const WebMediaStreamTrack&);
+ WEBKIT_EXPORT void removeTrack(const WebMediaStreamTrack&);
+
// DEPRECATED
void audioSources(WebVector<WebMediaStreamTrack>& tracks) const { audioTracks(tracks); }
void videoSources(WebVector<WebMediaStreamTrack>& tracks) const { videoTracks(tracks); }
« no previous file with comments | « no previous file | Source/Platform/chromium/public/WebMediaStreamCenterClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698