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

Unified Diff: Source/core/html/track/vtt/VTTCue.cpp

Issue 340763003: Change [ConstructorCallWith={Document => ExecutionContext}] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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/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)

Powered by Google App Engine
This is Rietveld 408576698