Index: content/public/renderer/media_stream_video_sink.cc |
diff --git a/content/public/renderer/media_stream_video_sink.cc b/content/public/renderer/media_stream_video_sink.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..912078ec721bca3c8c603b7f1773e3aa41c61a5d |
--- /dev/null |
+++ b/content/public/renderer/media_stream_video_sink.cc |
@@ -0,0 +1,29 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/public/renderer/media_stream_video_sink.h" |
+ |
+#include "base/logging.h" |
+#include "content/renderer/media/media_stream_video_track.h" |
+#include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
+ |
+namespace content { |
+ |
+void AddToVideoTrack(MediaStreamVideoSink* sink, |
+ const blink::WebMediaStreamTrack& track) { |
+ DCHECK_EQ(blink::WebMediaStreamSource::TypeVideo, track.source().type()); |
+ MediaStreamVideoTrack* video_track = |
+ static_cast<MediaStreamVideoTrack*>(track.extraData()); |
+ video_track->AddSink(sink); |
+} |
+ |
+void RemoveFromVideoTrack(MediaStreamVideoSink* sink, |
+ const blink::WebMediaStreamTrack& track) { |
+ DCHECK_EQ(blink::WebMediaStreamSource::TypeVideo, track.source().type()); |
+ MediaStreamVideoTrack* video_track = |
+ static_cast<MediaStreamVideoTrack*>(track.extraData()); |
+ video_track->RemoveSink(sink); |
+} |
+ |
+} // namespace content |