summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/platform/mediastream/RTCStatsResponseBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/platform/mediastream/RTCStatsResponseBase.h')
-rw-r--r--chromium/third_party/WebKit/Source/platform/mediastream/RTCStatsResponseBase.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chromium/third_party/WebKit/Source/platform/mediastream/RTCStatsResponseBase.h b/chromium/third_party/WebKit/Source/platform/mediastream/RTCStatsResponseBase.h
index dee70fbd5bf..7f492baf9ee 100644
--- a/chromium/third_party/WebKit/Source/platform/mediastream/RTCStatsResponseBase.h
+++ b/chromium/third_party/WebKit/Source/platform/mediastream/RTCStatsResponseBase.h
@@ -31,12 +31,14 @@
namespace WebCore {
-class RTCStatsResponseBase : public RefCounted<RTCStatsResponseBase> {
+class RTCStatsResponseBase : public RefCountedWillBeGarbageCollectedFinalized<RTCStatsResponseBase> {
public:
virtual ~RTCStatsResponseBase() { }
virtual size_t addReport(String id, String type, double timestamp) = 0;
virtual void addStatistic(size_t report, String name, String value) = 0;
+
+ virtual void trace(Visitor*) { }
};
} // namespace WebCore