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

Unified Diff: webrtc/system_wrappers/source/rw_lock_winxp_win.h

Issue 1601523009: Remove ConditionVariableWrapper. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move include inside guard 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
Index: webrtc/system_wrappers/source/rw_lock_winxp_win.h
diff --git a/webrtc/system_wrappers/source/rw_lock_winxp_win.h b/webrtc/system_wrappers/source/rw_lock_winxp_win.h
index 35decca337db1c9f2a3d2c30bc1f285fc6654c14..5c884482b653a72ac4b2807a03931fb9f28d66e7 100644
--- a/webrtc/system_wrappers/source/rw_lock_winxp_win.h
+++ b/webrtc/system_wrappers/source/rw_lock_winxp_win.h
@@ -13,7 +13,6 @@
#include "webrtc/system_wrappers/include/rw_lock_wrapper.h"
#include "webrtc/system_wrappers/source/condition_variable_event_win.h"
-#include "webrtc/system_wrappers/include/critical_section_wrapper.h"
#include "webrtc/typedefs.h"
namespace webrtc {
@@ -30,7 +29,7 @@ class RWLockWinXP : public RWLockWrapper {
void ReleaseLockShared() override;
private:
- CriticalSectionWrapper critical_section_;
+ CRITICAL_SECTION critical_section_;
ConditionVariableEventWin read_condition_;
ConditionVariableEventWin write_condition_;
« no previous file with comments | « webrtc/system_wrappers/source/condition_variable_unittest.cc ('k') | webrtc/system_wrappers/source/rw_lock_winxp_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698