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

Side by Side Diff: webrtc/api/mediastreaminterface.h

Issue 1816143002: Removed MediaStreamTrackInterface::set_state (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@track_state_listen_on_source2
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 }; 85 };
86 86
87 static const char kAudioKind[]; 87 static const char kAudioKind[];
88 static const char kVideoKind[]; 88 static const char kVideoKind[];
89 89
90 virtual std::string kind() const = 0; 90 virtual std::string kind() const = 0;
91 virtual std::string id() const = 0; 91 virtual std::string id() const = 0;
92 virtual bool enabled() const = 0; 92 virtual bool enabled() const = 0;
93 virtual TrackState state() const = 0; 93 virtual TrackState state() const = 0;
94 virtual bool set_enabled(bool enable) = 0; 94 virtual bool set_enabled(bool enable) = 0;
95 // These methods should be called by implementation only.
96 virtual bool set_state(TrackState new_state) = 0;
97 95
98 protected: 96 protected:
99 virtual ~MediaStreamTrackInterface() {} 97 virtual ~MediaStreamTrackInterface() {}
100 }; 98 };
101 99
102 // Interface for rendering VideoFrames from a VideoTrack 100 // Interface for rendering VideoFrames from a VideoTrack
103 class VideoRendererInterface 101 class VideoRendererInterface
104 : public rtc::VideoSinkInterface<cricket::VideoFrame> { 102 : public rtc::VideoSinkInterface<cricket::VideoFrame> {
105 public: 103 public:
106 // |frame| may have pending rotation. For clients which can't apply rotation, 104 // |frame| may have pending rotation. For clients which can't apply rotation,
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 virtual bool RemoveTrack(AudioTrackInterface* track) = 0; 293 virtual bool RemoveTrack(AudioTrackInterface* track) = 0;
296 virtual bool RemoveTrack(VideoTrackInterface* track) = 0; 294 virtual bool RemoveTrack(VideoTrackInterface* track) = 0;
297 295
298 protected: 296 protected:
299 virtual ~MediaStreamInterface() {} 297 virtual ~MediaStreamInterface() {}
300 }; 298 };
301 299
302 } // namespace webrtc 300 } // namespace webrtc
303 301
304 #endif // WEBRTC_API_MEDIASTREAMINTERFACE_H_ 302 #endif // WEBRTC_API_MEDIASTREAMINTERFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698