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

Unified Diff: Source/core/html/track/CueTimeline.h

Issue 1306413003: Make classes and structures in core/html fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/html/track/AutomaticTrackSelection.h ('k') | Source/core/html/track/vtt/BufferedLineReader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/CueTimeline.h
diff --git a/Source/core/html/track/CueTimeline.h b/Source/core/html/track/CueTimeline.h
index 5a11af42a8a0068708b9f527dceda613e54e8eb6..8bd32208e1d4e7274b0432194fe3a68905e10e23 100644
--- a/Source/core/html/track/CueTimeline.h
+++ b/Source/core/html/track/CueTimeline.h
@@ -28,7 +28,8 @@ typedef Vector<CueInterval> CueList;
// This class manages the timeline and rendering updates of cues associated
// with TextTracks. Owned by a HTMLMediaElement.
-class CueTimeline : public NoBaseWillBeGarbageCollectedFinalized<CueTimeline> {
+class CueTimeline final : public NoBaseWillBeGarbageCollectedFinalized<CueTimeline> {
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(CueTimeline);
public:
CueTimeline(HTMLMediaElement&);
« no previous file with comments | « Source/core/html/track/AutomaticTrackSelection.h ('k') | Source/core/html/track/vtt/BufferedLineReader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698