| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_ | 11 #ifndef WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_ |
| 12 #define WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_ | 12 #define WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_ |
| 13 | 13 |
| 14 #include <windows.h> | 14 #include <windows.h> |
| 15 | 15 |
| 16 #include "webrtc/system_wrappers/interface/event_wrapper.h" | 16 #include "webrtc/system_wrappers/include/event_wrapper.h" |
| 17 | 17 |
| 18 #include "webrtc/typedefs.h" | 18 #include "webrtc/typedefs.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 class EventTimerWin : public EventTimerWrapper { | 22 class EventTimerWin : public EventTimerWrapper { |
| 23 public: | 23 public: |
| 24 EventTimerWin(); | 24 EventTimerWin(); |
| 25 virtual ~EventTimerWin(); | 25 virtual ~EventTimerWin(); |
| 26 | 26 |
| 27 virtual EventTypeWrapper Wait(unsigned long max_time); | 27 virtual EventTypeWrapper Wait(unsigned long max_time); |
| 28 virtual bool Set(); | 28 virtual bool Set(); |
| 29 | 29 |
| 30 virtual bool StartTimer(bool periodic, unsigned long time); | 30 virtual bool StartTimer(bool periodic, unsigned long time); |
| 31 virtual bool StopTimer(); | 31 virtual bool StopTimer(); |
| 32 | 32 |
| 33 private: | 33 private: |
| 34 HANDLE event_; | 34 HANDLE event_; |
| 35 uint32_t timerID_; | 35 uint32_t timerID_; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 } // namespace webrtc | 38 } // namespace webrtc |
| 39 | 39 |
| 40 #endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_ | 40 #endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_ |
| OLD | NEW |