Index: third_party/WebKit/Source/platform/peerconnection/RTCStatsResponseBase.h |
diff --git a/third_party/WebKit/Source/platform/peerconnection/RTCStatsResponseBase.h b/third_party/WebKit/Source/platform/peerconnection/RTCStatsResponseBase.h |
index 2c7068c0299320069e5abff9bf57061c401b61c5..09a79891c630800bad0f3ff92337c12ac0ae5587 100644 |
--- a/third_party/WebKit/Source/platform/peerconnection/RTCStatsResponseBase.h |
+++ b/third_party/WebKit/Source/platform/peerconnection/RTCStatsResponseBase.h |
@@ -25,6 +25,7 @@ |
#ifndef RTCStatsResponseBase_h |
#define RTCStatsResponseBase_h |
+#include "public/platform/WebRTCStats.h" |
#include "wtf/Forward.h" |
namespace blink { |
@@ -33,8 +34,7 @@ class RTCStatsResponseBase : public GarbageCollectedFinalized<RTCStatsResponseBa |
public: |
virtual ~RTCStatsResponseBase() { } |
- virtual size_t addReport(const String& id, const String& type, double timestamp) = 0; |
- virtual void addStatistic(size_t report, const String& name, const String& value) = 0; |
+ virtual void addStats(const WebRTCStats&) = 0; |
DEFINE_INLINE_VIRTUAL_TRACE() { } |
}; |