Remove deprecated MediaStreamTrackInterface::set_state

Chrome is cleaned up in https://codereview.chromium.org/1853793002/
BUG=webrtc:5426

Review URL: https://codereview.webrtc.org/1854063002

Cr-Commit-Position: refs/heads/master@{#12254}
This commit is contained in:
perkj 2016-04-06 01:15:54 -07:00 committed by Commit bot
parent 7dc68897d3
commit efc38584b7

View File

@ -97,8 +97,6 @@ class MediaStreamTrackInterface : public rtc::RefCountInterface,
virtual bool enabled() const = 0;
virtual TrackState state() const = 0;
virtual bool set_enabled(bool enable) = 0;
// TODO(perkj): Remove when Chrome tests doesn't rely on this method.
virtual bool set_state(TrackState state) { return true;}
protected:
virtual ~MediaStreamTrackInterface() {}