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

Side by Side Diff: webrtc/audio/audio_send_stream.h

Issue 3012853002: Update thread annotiation macros to use RTC_ prefix (Closed)
Patch Set: Rebase Created 3 years, 3 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
« no previous file with comments | « webrtc/audio/audio_receive_stream.h ('k') | webrtc/audio/audio_state.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 rtc::scoped_refptr<webrtc::AudioState> audio_state_; 108 rtc::scoped_refptr<webrtc::AudioState> audio_state_;
109 std::unique_ptr<voe::ChannelProxy> channel_proxy_; 109 std::unique_ptr<voe::ChannelProxy> channel_proxy_;
110 RtcEventLog* const event_log_; 110 RtcEventLog* const event_log_;
111 111
112 BitrateAllocator* const bitrate_allocator_; 112 BitrateAllocator* const bitrate_allocator_;
113 RtpTransportControllerSendInterface* const transport_; 113 RtpTransportControllerSendInterface* const transport_;
114 std::unique_ptr<RtcpBandwidthObserver> bandwidth_observer_; 114 std::unique_ptr<RtcpBandwidthObserver> bandwidth_observer_;
115 115
116 rtc::CriticalSection packet_loss_tracker_cs_; 116 rtc::CriticalSection packet_loss_tracker_cs_;
117 TransportFeedbackPacketLossTracker packet_loss_tracker_ 117 TransportFeedbackPacketLossTracker packet_loss_tracker_
118 GUARDED_BY(&packet_loss_tracker_cs_); 118 RTC_GUARDED_BY(&packet_loss_tracker_cs_);
119 119
120 RtpRtcp* rtp_rtcp_module_; 120 RtpRtcp* rtp_rtcp_module_;
121 rtc::Optional<RtpState> const suspended_rtp_state_; 121 rtc::Optional<RtpState> const suspended_rtp_state_;
122 122
123 std::unique_ptr<TimedTransport> timed_send_transport_adapter_; 123 std::unique_ptr<TimedTransport> timed_send_transport_adapter_;
124 TimeInterval active_lifetime_; 124 TimeInterval active_lifetime_;
125 125
126 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioSendStream); 126 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioSendStream);
127 }; 127 };
128 } // namespace internal 128 } // namespace internal
129 } // namespace webrtc 129 } // namespace webrtc
130 130
131 #endif // WEBRTC_AUDIO_AUDIO_SEND_STREAM_H_ 131 #endif // WEBRTC_AUDIO_AUDIO_SEND_STREAM_H_
OLDNEW
« no previous file with comments | « webrtc/audio/audio_receive_stream.h ('k') | webrtc/audio/audio_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698