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

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

Issue 1601743004: Make CriticalSectionWrapper non-virtual (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Improve comment 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/system_wrappers/source/critical_section_win.cc ('k') | webrtc/system_wrappers/system_wrappers.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20e538250ad68cbb563ada6db50272411ed33594..35decca337db1c9f2a3d2c30bc1f285fc6654c14 100644
--- a/webrtc/system_wrappers/source/rw_lock_winxp_win.h
+++ b/webrtc/system_wrappers/source/rw_lock_winxp_win.h
@@ -13,7 +13,7 @@
#include "webrtc/system_wrappers/include/rw_lock_wrapper.h"
#include "webrtc/system_wrappers/source/condition_variable_event_win.h"
-#include "webrtc/system_wrappers/source/critical_section_win.h"
+#include "webrtc/system_wrappers/include/critical_section_wrapper.h"
#include "webrtc/typedefs.h"
namespace webrtc {
@@ -30,7 +30,7 @@ class RWLockWinXP : public RWLockWrapper {
void ReleaseLockShared() override;
private:
- CriticalSectionWindows critical_section_;
+ CriticalSectionWrapper critical_section_;
ConditionVariableEventWin read_condition_;
ConditionVariableEventWin write_condition_;
« no previous file with comments | « webrtc/system_wrappers/source/critical_section_win.cc ('k') | webrtc/system_wrappers/system_wrappers.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698