From acb24178e2a60a1858681bbdc3214fc2095dcc9e Mon Sep 17 00:00:00 2001 From: Elad Alon Date: Fri, 6 Oct 2017 14:32:13 +0200 Subject: [PATCH] Fix apparent copy/paste error in comment (PeerConnection) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit s/Start/Stop (and other nits) TBR=stefan@webrtc.org Bug: webrtc:8111 Change-Id: I4a2ee6d77ddd1ba34a905f861f579f2b2dc29105 Reviewed-on: https://webrtc-review.googlesource.com/7282 Reviewed-by: Elad Alon Reviewed-by: Björn Terelius Commit-Queue: Elad Alon Cr-Commit-Position: refs/heads/master@{#20186} --- pc/peerconnection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pc/peerconnection.h b/pc/peerconnection.h index df5085bf17..fa06c3d78d 100644 --- a/pc/peerconnection.h +++ b/pc/peerconnection.h @@ -438,10 +438,10 @@ class PeerConnection : public PeerConnectionInterface, int candidate_pool_size, bool prune_turn_ports); - // Starts recording an Rtc EventLog using the supplied platform file. + // Starts recording an RTC event log using the supplied platform file. // This function should only be called from the worker thread. bool StartRtcEventLog_w(rtc::PlatformFile file, int64_t max_size_bytes); - // Starts recording an Rtc EventLog using the supplied platform file. + // Stops recording an RTC event log. // This function should only be called from the worker thread. void StopRtcEventLog_w();