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

Unified Diff: webrtc/system_wrappers/source/condition_variable_event_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/condition_variable_event_win.h
diff --git a/webrtc/system_wrappers/source/condition_variable_event_win.h b/webrtc/system_wrappers/source/condition_variable_event_win.h
index cdcef7dcb83d5657f7fa81ea5a03cc9a84bb647f..8099ad5f91c4b8a5998c0319bd88161bd310fd05 100644
--- a/webrtc/system_wrappers/source/condition_variable_event_win.h
+++ b/webrtc/system_wrappers/source/condition_variable_event_win.h
@@ -13,17 +13,15 @@
#include <windows.h>
-#include "webrtc/system_wrappers/include/condition_variable_wrapper.h"
-
namespace webrtc {
-class ConditionVariableEventWin : public ConditionVariableWrapper {
+class ConditionVariableEventWin {
public:
ConditionVariableEventWin();
- virtual ~ConditionVariableEventWin();
+ ~ConditionVariableEventWin();
- void SleepCS(CriticalSectionWrapper& crit_sect);
- bool SleepCS(CriticalSectionWrapper& crit_sect, unsigned long max_time_inMS);
+ void SleepCS(CRITICAL_SECTION* crit_sect);
+ bool SleepCS(CRITICAL_SECTION* crit_sect, unsigned long max_time_inMS);
void Wake();
void WakeAll();
« no previous file with comments | « webrtc/system_wrappers/source/condition_variable.cc ('k') | webrtc/system_wrappers/source/condition_variable_event_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698