OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 | 133 |
134 RawPtrWillBeMember<TextTrackList> m_trackList; | 134 RawPtrWillBeMember<TextTrackList> m_trackList; |
135 AtomicString m_mode; | 135 AtomicString m_mode; |
136 TextTrackType m_trackType; | 136 TextTrackType m_trackType; |
137 ReadinessState m_readinessState; | 137 ReadinessState m_readinessState; |
138 int m_trackIndex; | 138 int m_trackIndex; |
139 int m_renderedTrackIndex; | 139 int m_renderedTrackIndex; |
140 bool m_hasBeenConfigured; | 140 bool m_hasBeenConfigured; |
141 }; | 141 }; |
142 | 142 |
| 143 DEFINE_TRACK_TYPE_CASTS(TextTrack, TrackBase::TextTrack); |
| 144 |
143 } // namespace WebCore | 145 } // namespace WebCore |
144 | 146 |
145 #endif | 147 #endif |
OLD | NEW |