webrtc: Remove semicolons.
Bug: chromium:926235 Change-Id: I66c10ab3df38adf87152d1f18cc8162afedca7e4 Reviewed-on: https://webrtc-review.googlesource.com/c/123560 Commit-Queue: Tommi <tommi@webrtc.org> Reviewed-by: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26780}
This commit is contained in:
@ -202,18 +202,18 @@ class RtpTransceiver final
|
||||
|
||||
BEGIN_SIGNALING_PROXY_MAP(RtpTransceiver)
|
||||
PROXY_SIGNALING_THREAD_DESTRUCTOR()
|
||||
PROXY_CONSTMETHOD0(cricket::MediaType, media_type);
|
||||
PROXY_CONSTMETHOD0(absl::optional<std::string>, mid);
|
||||
PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpSenderInterface>, sender);
|
||||
PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpReceiverInterface>, receiver);
|
||||
PROXY_CONSTMETHOD0(bool, stopped);
|
||||
PROXY_CONSTMETHOD0(RtpTransceiverDirection, direction);
|
||||
PROXY_METHOD1(void, SetDirection, RtpTransceiverDirection);
|
||||
PROXY_CONSTMETHOD0(absl::optional<RtpTransceiverDirection>, current_direction);
|
||||
PROXY_CONSTMETHOD0(absl::optional<RtpTransceiverDirection>, fired_direction);
|
||||
PROXY_METHOD0(void, Stop);
|
||||
PROXY_METHOD1(void, SetCodecPreferences, rtc::ArrayView<RtpCodecCapability>);
|
||||
END_PROXY_MAP();
|
||||
PROXY_CONSTMETHOD0(cricket::MediaType, media_type)
|
||||
PROXY_CONSTMETHOD0(absl::optional<std::string>, mid)
|
||||
PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpSenderInterface>, sender)
|
||||
PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpReceiverInterface>, receiver)
|
||||
PROXY_CONSTMETHOD0(bool, stopped)
|
||||
PROXY_CONSTMETHOD0(RtpTransceiverDirection, direction)
|
||||
PROXY_METHOD1(void, SetDirection, RtpTransceiverDirection)
|
||||
PROXY_CONSTMETHOD0(absl::optional<RtpTransceiverDirection>, current_direction)
|
||||
PROXY_CONSTMETHOD0(absl::optional<RtpTransceiverDirection>, fired_direction)
|
||||
PROXY_METHOD0(void, Stop)
|
||||
PROXY_METHOD1(void, SetCodecPreferences, rtc::ArrayView<RtpCodecCapability>)
|
||||
END_PROXY_MAP()
|
||||
|
||||
} // namespace webrtc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user