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

Unified Diff: Source/core/html/track/TextTrackCue.cpp

Issue 50903009: Remove virtual where not needed in TextTrackCue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: wrong about applyCSSProperties Created 7 years, 1 month 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/TextTrackCue.cpp
diff --git a/Source/core/html/track/TextTrackCue.cpp b/Source/core/html/track/TextTrackCue.cpp
index 31344ee836a49b26046b3aa0559a77c388d89085..cb1db34236192f2cc84395be0d13d0fcb47a7077 100644
--- a/Source/core/html/track/TextTrackCue.cpp
+++ b/Source/core/html/track/TextTrackCue.cpp
@@ -1208,9 +1208,6 @@ Document& TextTrackCue::document() const
bool TextTrackCue::operator==(const TextTrackCue& cue) const
{
- if (cueType() != cue.cueType())
- return false;
-
if (m_endTime != cue.endTime())
return false;
if (m_startTime != cue.startTime())

Powered by Google App Engine
This is Rietveld 408576698