Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/track/TextTrack.h |
| diff --git a/third_party/WebKit/Source/core/html/track/TextTrack.h b/third_party/WebKit/Source/core/html/track/TextTrack.h |
| index f645a127dcdf26713a9e25e7d02897cf2bb04203..8a69cdcc72d66c9a1d811ef260da37a1cf9e5b4b 100644 |
| --- a/third_party/WebKit/Source/core/html/track/TextTrack.h |
| +++ b/third_party/WebKit/Source/core/html/track/TextTrack.h |
| @@ -123,7 +123,7 @@ protected: |
| TextTrack(const AtomicString& kind, const AtomicString& label, const AtomicString& language, const AtomicString& id, TextTrackType); |
| bool isValidKind(const AtomicString& kind) const override { return isValidKindKeyword(kind); } |
| - AtomicString defaultKind() const override { return subtitlesKeyword(); } |
| + AtomicString invalidValueDefaultKind() const override { return metadataKeyword(); } |
|
fs
2016/05/04 15:15:02
(After doing this fix I can't say that I'm too thr
davve
2016/05/06 14:56:15
Bringing the implementation closer in structure to
fs
2016/05/09 11:58:17
Yes... When this will be done will probably depend
|
| void addListOfCues(HeapVector<Member<TextTrackCue>>&); |