Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / content / renderer / media / media_stream_track.h
index e1e2e4f..456005d 100644 (file)
@@ -13,7 +13,6 @@
 
 namespace webrtc {
 class AudioTrackInterface;
-class VideoTrackInterface;
 class MediaStreamTrackInterface;
 }  // namespace webrtc
 
@@ -35,8 +34,11 @@ class CONTENT_EXPORT MediaStreamTrack
   // If a subclass overrides this method it has to call the base class.
   virtual void SetEnabled(bool enabled);
 
+  // TODO(xians): Make this pure virtual when Stop[Track] has been
+  // implemented for remote audio tracks.
+  virtual void Stop();
+
   virtual webrtc::AudioTrackInterface* GetAudioAdapter();
-  virtual webrtc::VideoTrackInterface* GetVideoAdapter();
 
   bool is_local_track () const { return is_local_track_; }