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_; |