| 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 14 matching lines...) Expand all Loading... |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef TextTrack_h | 27 #ifndef TextTrack_h |
| 28 #define TextTrack_h | 28 #define TextTrack_h |
| 29 | 29 |
| 30 #include "bindings/core/v8/TraceWrapperMember.h" | 30 #include "bindings/core/v8/TraceWrapperMember.h" |
| 31 #include "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
| 32 #include "core/events/EventTarget.h" | 32 #include "core/events/EventTarget.h" |
| 33 #include "core/html/track/TrackBase.h" | 33 #include "core/html/track/TrackBase.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "wtf/text/WTFString.h" | 35 #include "platform/wtf/text/WTFString.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class CueTimeline; | 39 class CueTimeline; |
| 40 class ExceptionState; | 40 class ExceptionState; |
| 41 class HTMLMediaElement; | 41 class HTMLMediaElement; |
| 42 class TextTrack; | 42 class TextTrack; |
| 43 class TextTrackCue; | 43 class TextTrackCue; |
| 44 class TextTrackCueList; | 44 class TextTrackCueList; |
| 45 class TextTrackList; | 45 class TextTrackList; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 int track_index_; | 152 int track_index_; |
| 153 int rendered_track_index_; | 153 int rendered_track_index_; |
| 154 bool has_been_configured_; | 154 bool has_been_configured_; |
| 155 }; | 155 }; |
| 156 | 156 |
| 157 DEFINE_TRACK_TYPE_CASTS(TextTrack, WebMediaPlayer::kTextTrack); | 157 DEFINE_TRACK_TYPE_CASTS(TextTrack, WebMediaPlayer::kTextTrack); |
| 158 | 158 |
| 159 } // namespace blink | 159 } // namespace blink |
| 160 | 160 |
| 161 #endif // TextTrack_h | 161 #endif // TextTrack_h |
| OLD | NEW |