Chromium Code Reviews| Index: Source/platform/mediastream/RTCStatsResponseBase.h |
| diff --git a/Source/platform/mediastream/RTCStatsResponseBase.h b/Source/platform/mediastream/RTCStatsResponseBase.h |
| index dee70fbd5bf34812bba512da40d9fbeae807a927..8c2630cfe2b5af9cb8aa7c2d6730b310adb6833e 100644 |
| --- a/Source/platform/mediastream/RTCStatsResponseBase.h |
| +++ b/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*) = 0; |
|
haraken
2014/05/08 05:08:39
Pure virtual trace is forbidden (see an email from
zerny-chromium
2014/05/08 08:02:36
Yes, I'll add it asap.
keishi
2014/05/09 01:53:54
Done.
|
| }; |
| } // namespace WebCore |