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

Side by Side Diff: third_party/WebKit/Source/core/html/track/VideoTrack.h

Issue 1947033002: Change "invalid value default" for HTMLTrackElement 'kind' to "metadata" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef VideoTrack_h 5 #ifndef VideoTrack_h
6 #define VideoTrack_h 6 #define VideoTrack_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "core/CoreExport.h" 9 #include "core/CoreExport.h"
10 #include "core/html/track/TrackBase.h" 10 #include "core/html/track/TrackBase.h"
(...skipping 27 matching lines...) Expand all
38 static const AtomicString& subtitlesKeyword(); 38 static const AtomicString& subtitlesKeyword();
39 static const AtomicString& commentaryKeyword(); 39 static const AtomicString& commentaryKeyword();
40 40
41 static bool isValidKindKeyword(const String&); 41 static bool isValidKindKeyword(const String&);
42 42
43 private: 43 private:
44 VideoTrack(const String& id, const AtomicString& kind, const AtomicString& l abel, const AtomicString& language, bool selected); 44 VideoTrack(const String& id, const AtomicString& kind, const AtomicString& l abel, const AtomicString& language, bool selected);
45 45
46 // TrackBase 46 // TrackBase
47 bool isValidKind(const AtomicString& kind) const override { return isValidKi ndKeyword(kind); } 47 bool isValidKind(const AtomicString& kind) const override { return isValidKi ndKeyword(kind); }
48 AtomicString defaultKind() const override; 48 AtomicString invalidValueDefaultKind() const override;
49 49
50 bool m_selected; 50 bool m_selected;
51 }; 51 };
52 52
53 DEFINE_TRACK_TYPE_CASTS(VideoTrack, WebMediaPlayer::VideoTrack); 53 DEFINE_TRACK_TYPE_CASTS(VideoTrack, WebMediaPlayer::VideoTrack);
54 54
55 } // namespace blink 55 } // namespace blink
56 56
57 #endif // VideoTrack_h 57 #endif // VideoTrack_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/track/TrackBase.cpp ('k') | third_party/WebKit/Source/core/html/track/VideoTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698