| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2012 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 | 27 |
| 28 #include "core/html/track/InbandTextTrack.h" | 28 #include "core/html/track/InbandTextTrack.h" |
| 29 | 29 |
| 30 #include <math.h> | 30 #include <math.h> |
| 31 #include "core/dom/Document.h" | |
| 32 #include "core/dom/Event.h" | |
| 33 #include "core/dom/ExceptionCodePlaceholder.h" | 31 #include "core/dom/ExceptionCodePlaceholder.h" |
| 34 #include "core/html/track/TextTrackCueGeneric.h" | 32 #include "core/html/track/TextTrackCueGeneric.h" |
| 35 #include "core/html/track/TextTrackCueList.h" | |
| 36 #include "core/platform/Logging.h" | 33 #include "core/platform/Logging.h" |
| 37 #include "core/platform/graphics/InbandTextTrackPrivate.h" | 34 #include "core/platform/graphics/InbandTextTrackPrivate.h" |
| 38 #include "core/platform/graphics/MediaPlayer.h" | |
| 39 #include <wtf/UnusedParam.h> | 35 #include <wtf/UnusedParam.h> |
| 40 | 36 |
| 41 namespace WebCore { | 37 namespace WebCore { |
| 42 | 38 |
| 43 PassRefPtr<InbandTextTrack> InbandTextTrack::create(ScriptExecutionContext* cont
ext, TextTrackClient* client, PassRefPtr<InbandTextTrackPrivate> playerPrivate) | 39 PassRefPtr<InbandTextTrack> InbandTextTrack::create(ScriptExecutionContext* cont
ext, TextTrackClient* client, PassRefPtr<InbandTextTrackPrivate> playerPrivate) |
| 44 { | 40 { |
| 45 return adoptRef(new InbandTextTrack(context, client, playerPrivate)); | 41 return adoptRef(new InbandTextTrack(context, client, playerPrivate)); |
| 46 } | 42 } |
| 47 | 43 |
| 48 InbandTextTrack::InbandTextTrack(ScriptExecutionContext* context, TextTrackClien
t* client, PassRefPtr<InbandTextTrackPrivate> tracksPrivate) | 44 InbandTextTrack::InbandTextTrack(ScriptExecutionContext* context, TextTrackClien
t* client, PassRefPtr<InbandTextTrackPrivate> tracksPrivate) |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 cue->setCueSettings(settings); | 177 cue->setCueSettings(settings); |
| 182 | 178 |
| 183 if (hasCue(cue.get())) | 179 if (hasCue(cue.get())) |
| 184 return; | 180 return; |
| 185 | 181 |
| 186 addCue(cue); | 182 addCue(cue); |
| 187 } | 183 } |
| 188 | 184 |
| 189 } // namespace WebCore | 185 } // namespace WebCore |
| 190 | 186 |
| OLD | NEW |