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

Unified Diff: webrtc/base/criticalsection.h

Issue 2957753002: No compliation-flag-dependent members in CriticalSection (Closed)
Patch Set: Created 3 years, 6 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 | « no previous file | webrtc/base/criticalsection.cc » ('j') | webrtc/base/criticalsection.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/criticalsection.h
diff --git a/webrtc/base/criticalsection.h b/webrtc/base/criticalsection.h
index a0f9a6be814355532b4ea2652caca199832c41a1..63d73af586f6453862dac6843bc6048a81bc8b45 100644
--- a/webrtc/base/criticalsection.h
+++ b/webrtc/base/criticalsection.h
@@ -14,8 +14,9 @@
#include "webrtc/base/atomicops.h"
#include "webrtc/base/checks.h"
#include "webrtc/base/constructormagic.h"
-#include "webrtc/base/thread_annotations.h"
#include "webrtc/base/platform_thread_types.h"
+#include "webrtc/base/thread_annotations.h"
+#include "webrtc/typedefs.h"
#if defined(WEBRTC_WIN)
// Include winsock2.h before including <windows.h> to maintain consistency with
@@ -82,8 +83,8 @@ class LOCKABLE CriticalSection {
#else
mutable pthread_mutex_t mutex_;
#endif
- CS_DEBUG_CODE(mutable PlatformThreadRef thread_);
- CS_DEBUG_CODE(mutable int recursion_count_);
+ mutable PlatformThreadRef thread_;
+ mutable int recursion_count_;
#endif
};
@@ -116,7 +117,7 @@ class TryCritScope {
private:
const CriticalSection* const cs_;
const bool locked_;
- CS_DEBUG_CODE(mutable bool lock_was_called_);
+ mutable bool lock_was_called_;
RTC_DISALLOW_COPY_AND_ASSIGN(TryCritScope);
};
« no previous file with comments | « no previous file | webrtc/base/criticalsection.cc » ('j') | webrtc/base/criticalsection.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698