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..b10ac7a95400ca51eaba6de90c06e3d25baa9528 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 RefCountedWillBeGarbageCollected<RTCStatsResponseBase> { |
|
haraken
2014/02/27 15:32:43
This should be RefCountedWillBeGarbageCollectedFin
keishi
2014/04/07 09:06:52
Done.
|
| 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 |