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

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

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/VideoTrackList.h ('k') | Source/core/html/track/vtt/VTTElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 b94d49452568e41fa232be3d919815ca33daee5e..a0062d1e15dfc80977195e9c7ac3a085fc0fb429 100644
--- a/Source/core/html/track/vtt/VTTCue.h
+++ b/Source/core/html/track/vtt/VTTCue.h
@@ -65,7 +65,7 @@ public:
private:
VTTCueBox(Document&, VTTCue*);
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
RawPtrWillBeMember<VTTCue> m_cue;
};
@@ -78,7 +78,7 @@ public:
return adoptRefWillBeNoop(new VTTCue(document, startTime, endTime, text));
}
- virtual ~VTTCue();
+ ~VTTCue() override;
const String& vertical() const;
void setVertical(const String&);
@@ -111,11 +111,11 @@ public:
const String& regionId() const { return m_regionId; }
void setRegionId(const String&);
- virtual void updateDisplay(HTMLDivElement& container) override;
+ void updateDisplay(HTMLDivElement& container) override;
- virtual void updatePastAndFutureNodes(double movieTime) override;
+ void updatePastAndFutureNodes(double movieTime) override;
- virtual void removeDisplayTree(RemovalNotification) override;
+ void removeDisplayTree(RemovalNotification) override;
float calculateComputedLinePosition() const;
@@ -137,10 +137,10 @@ public:
};
CueAlignment cueAlignment() const { return m_cueAlignment; }
- virtual ExecutionContext* executionContext() const override;
+ ExecutionContext* executionContext() const override;
#ifndef NDEBUG
- virtual String toString() const override;
+ String toString() const override;
#endif
DECLARE_VIRTUAL_TRACE();
@@ -152,7 +152,7 @@ private:
PassRefPtrWillBeRawPtr<VTTCueBox> getDisplayTree();
- virtual void cueDidChange() override;
+ void cueDidChange() override;
void createVTTNodeTree();
void copyVTTNodeToDOMTree(ContainerNode* vttNode, ContainerNode* root);
« no previous file with comments | « Source/core/html/track/VideoTrackList.h ('k') | Source/core/html/track/vtt/VTTElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698