OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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_VOICE_ENGINE_MONITOR_MODULE_H | 11 #ifndef WEBRTC_VOICE_ENGINE_MONITOR_MODULE_H |
12 #define WEBRTC_VOICE_ENGINE_MONITOR_MODULE_H | 12 #define WEBRTC_VOICE_ENGINE_MONITOR_MODULE_H |
13 | 13 |
14 #include "webrtc/modules/interface/module.h" | 14 #include "webrtc/modules/include/module.h" |
15 #include "webrtc/typedefs.h" | 15 #include "webrtc/typedefs.h" |
16 #include "webrtc/voice_engine/voice_engine_defines.h" | 16 #include "webrtc/voice_engine/voice_engine_defines.h" |
17 | 17 |
18 class MonitorObserver | 18 class MonitorObserver |
19 { | 19 { |
20 public: | 20 public: |
21 virtual void OnPeriodicProcess() = 0; | 21 virtual void OnPeriodicProcess() = 0; |
22 protected: | 22 protected: |
23 virtual ~MonitorObserver() {} | 23 virtual ~MonitorObserver() {} |
24 }; | 24 }; |
(...skipping 23 matching lines...) Expand all Loading... |
48 MonitorObserver* _observerPtr; | 48 MonitorObserver* _observerPtr; |
49 CriticalSectionWrapper& _callbackCritSect; | 49 CriticalSectionWrapper& _callbackCritSect; |
50 int64_t _lastProcessTime; | 50 int64_t _lastProcessTime; |
51 }; | 51 }; |
52 | 52 |
53 } // namespace voe | 53 } // namespace voe |
54 | 54 |
55 } // namespace webrtc | 55 } // namespace webrtc |
56 | 56 |
57 #endif // VOICE_ENGINE_MONITOR_MODULE | 57 #endif // VOICE_ENGINE_MONITOR_MODULE |
OLD | NEW |