Chromium Code Reviews

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

Issue 54963004: Make LoadableTextTrack::clearClient not virtual (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/LoadableTextTrack.h
diff --git a/Source/core/html/track/LoadableTextTrack.h b/Source/core/html/track/LoadableTextTrack.h
index 0bce58bc706979862ddc828bdb949d0e6972be7b..7289320a2cd9fba7440f27a4b5e7ed79230947db 100644
--- a/Source/core/html/track/LoadableTextTrack.h
+++ b/Source/core/html/track/LoadableTextTrack.h
@@ -45,7 +45,8 @@ public:
void scheduleLoad(const KURL&);
- virtual void clearClient();
+ // This shadows TextTrack::clearClient, but need not be virtual.
+ void clearClient();
size_t trackElementIndex();
HTMLTrackElement* trackElement() { return m_trackElement; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine