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

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

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.h
diff --git a/Source/core/html/track/vtt/VTTCue.h b/Source/core/html/track/vtt/VTTCue.h
index a43112dce4bc0f7b7f650c010e519ebcbd0ccfd3..6c2bc9c0321380391f76e4993573c64b2c46b8e7 100644
--- a/Source/core/html/track/vtt/VTTCue.h
+++ b/Source/core/html/track/vtt/VTTCue.h
@@ -63,10 +63,7 @@ private:
class VTTCue FINAL : public TextTrackCue, public ScriptWrappable {
public:
- static PassRefPtrWillBeRawPtr<VTTCue> create(Document& document, double startTime, double endTime, const String& text)
- {
- return adoptRefWillBeRefCountedGarbageCollected(new VTTCue(document, startTime, endTime, text));
- }
+ static PassRefPtrWillBeRawPtr<VTTCue> create(ExecutionContext*, double startTime, double endTime, const String& text);
virtual ~VTTCue();

Powered by Google App Engine
This is Rietveld 408576698