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

Unified Diff: webrtc/base/stream.h

Issue 1613643004: Remove mutable from rtc::CriticalSection members. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/physicalsocketserver.h ('k') | webrtc/base/thread_checker_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/stream.h
diff --git a/webrtc/base/stream.h b/webrtc/base/stream.h
index c57daae76c591ba83709da6c134317cd4b0237f4..98123b82118ee9f9c75b3b4aa0901ded4c610d84 100644
--- a/webrtc/base/stream.h
+++ b/webrtc/base/stream.h
@@ -555,7 +555,7 @@ class FifoBuffer : public StreamInterface {
size_t data_length_; // amount of readable data in the buffer
size_t read_position_; // offset to the readable data
Thread* owner_; // stream callbacks are dispatched on this thread
- mutable CriticalSection crit_; // object lock
+ CriticalSection crit_; // object lock
RTC_DISALLOW_COPY_AND_ASSIGN(FifoBuffer);
};
« no previous file with comments | « webrtc/base/physicalsocketserver.h ('k') | webrtc/base/thread_checker_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698