OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef TextTrackKindUserPreference_h | |
6 #define TextTrackKindUserPreference_h | |
7 | |
8 namespace blink { | |
9 | |
10 // Defines user preference for text track kind. | |
11 enum class TextTrackKindUserPreference { | |
12 // Display only tracks marked as default. | |
13 Default, | |
14 // Display caption tracks if available and if not display subtitles in prefe rred language. | |
philipj_slow
2015/07/09 15:34:09
So now I've read the code again, and I can't see a
srivats
2015/07/09 21:25:37
Done.
| |
15 Captions, | |
16 // Display subtitle tracks if available. | |
17 Subtitles | |
18 }; | |
19 | |
20 } // namespace blink | |
21 | |
22 #endif // TextTrackKindUserPreference_h | |
OLD | NEW |