Chromium Code Reviews| Index: webrtc/p2p/base/dtlstransportchannel.h |
| diff --git a/webrtc/p2p/base/dtlstransportchannel.h b/webrtc/p2p/base/dtlstransportchannel.h |
| index a07c605e051c82f3b162dd6ee32ff182788e3038..5666d356088ce1f4a6d440bf51eb92f29df2c292 100644 |
| --- a/webrtc/p2p/base/dtlstransportchannel.h |
| +++ b/webrtc/p2p/base/dtlstransportchannel.h |
| @@ -224,7 +224,7 @@ class DtlsTransportChannelWrapper : public TransportChannelImpl { |
| void OnChannelStateChanged(TransportChannelImpl* channel); |
| void OnDtlsHandshakeError(rtc::SSLHandshakeError error); |
| - rtc::Thread* worker_thread_; // Everything should occur on this thread. |
| + rtc::Thread* network_thread_; // Everything should occur on this thread. |
|
danilchap
2016/10/05 14:56:13
this variable is used only to validate everything
johan
2016/10/05 16:13:24
Basically I agree on preferring RTC_DCHECK family
|
| // Underlying channel, not owned by this class. |
| TransportChannelImpl* const channel_; |
| std::unique_ptr<rtc::SSLStreamAdapter> dtls_; // The DTLS stream |