Index: Source/core/html/TimeRanges.h |
diff --git a/Source/core/html/TimeRanges.h b/Source/core/html/TimeRanges.h |
index 1fb8b1c55dbb3df75a02bd041a2da7253c372512..1ae926e3f4e462e213b1e3c445e599a528e986b1 100644 |
--- a/Source/core/html/TimeRanges.h |
+++ b/Source/core/html/TimeRanges.h |
@@ -30,6 +30,7 @@ |
#include "core/CoreExport.h" |
#include "platform/heap/Handle.h" |
#include "public/platform/WebTimeRange.h" |
+#include "wtf/Allocator.h" |
#include "wtf/Vector.h" |
#include <algorithm> |
@@ -43,6 +44,7 @@ class CORE_EXPORT TimeRanges : public GarbageCollectedFinalized<TimeRanges>, pub |
public: |
// We consider all the Ranges to be semi-bounded as follow: [start, end[ |
struct Range { |
+ ALLOW_ONLY_INLINE_ALLOCATION(); |
public: |
Range() { } |
Range(double start, double end) |