Index: Source/core/html/track/vtt/VTTCue.cpp |
diff --git a/Source/core/html/track/vtt/VTTCue.cpp b/Source/core/html/track/vtt/VTTCue.cpp |
index 8069c26ad2f25ac82a246c0c8d1023a5fdcdce5b..0c3b1ebf5cc1aea246173fec0ea8670e46dc7919 100644 |
--- a/Source/core/html/track/vtt/VTTCue.cpp |
+++ b/Source/core/html/track/vtt/VTTCue.cpp |
@@ -206,6 +206,11 @@ void VTTCueBox::trace(Visitor* visitor) |
HTMLDivElement::trace(visitor); |
} |
+PassRefPtrWillBeRawPtr<VTTCue> VTTCue::create(ExecutionContext* executionContext, double startTime, double endTime, const String& text) |
+{ |
+ return adoptRefWillBeRefCountedGarbageCollected(new VTTCue(*toDocument(executionContext), startTime, endTime, text)); |
+} |
+ |
VTTCue::VTTCue(Document& document, double startTime, double endTime, const String& text) |
: TextTrackCue(startTime, endTime) |
, m_text(text) |