Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1276)

Unified Diff: Source/platform/mediastream/RTCStatsResponseBase.h

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: toRefPtrWillBeMemberNativeArray Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/platform/mediastream/RTCStatsResponseBase.h
diff --git a/Source/platform/mediastream/RTCStatsResponseBase.h b/Source/platform/mediastream/RTCStatsResponseBase.h
index dee70fbd5bf34812bba512da40d9fbeae807a927..7f492baf9eee0585e824ce1a135d8de585b4a2fd 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*) { }
sof 2014/04/07 14:22:16 Worth considering making this a pure virtual ?
keishi 2014/04/11 20:03:06 Done.
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698