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_VIDEO_ENGINE_CALL_STATS_H_ | 11 #ifndef WEBRTC_VIDEO_ENGINE_CALL_STATS_H_ |
12 #define WEBRTC_VIDEO_ENGINE_CALL_STATS_H_ | 12 #define WEBRTC_VIDEO_ENGINE_CALL_STATS_H_ |
13 | 13 |
14 #include <list> | 14 #include <list> |
15 | 15 |
16 #include "webrtc/base/constructormagic.h" | 16 #include "webrtc/base/constructormagic.h" |
17 #include "webrtc/base/scoped_ptr.h" | 17 #include "webrtc/base/scoped_ptr.h" |
18 #include "webrtc/modules/interface/module.h" | 18 #include "webrtc/modules/include/module.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
22 class CallStatsObserver; | 22 class CallStatsObserver; |
23 class CriticalSectionWrapper; | 23 class CriticalSectionWrapper; |
24 class RtcpRttStats; | 24 class RtcpRttStats; |
25 | 25 |
26 // CallStats keeps track of statistics for a call. | 26 // CallStats keeps track of statistics for a call. |
27 class CallStats : public Module { | 27 class CallStats : public Module { |
28 public: | 28 public: |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 | 72 |
73 // Observers getting stats reports. | 73 // Observers getting stats reports. |
74 std::list<CallStatsObserver*> observers_; | 74 std::list<CallStatsObserver*> observers_; |
75 | 75 |
76 RTC_DISALLOW_COPY_AND_ASSIGN(CallStats); | 76 RTC_DISALLOW_COPY_AND_ASSIGN(CallStats); |
77 }; | 77 }; |
78 | 78 |
79 } // namespace webrtc | 79 } // namespace webrtc |
80 | 80 |
81 #endif // WEBRTC_VIDEO_ENGINE_CALL_STATS_H_ | 81 #endif // WEBRTC_VIDEO_ENGINE_CALL_STATS_H_ |
OLD | NEW |