OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 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 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1255 } | 1255 } |
1256 | 1256 |
1257 void HTMLMediaElement::endIgnoringTrackDisplayUpdateRequests() | 1257 void HTMLMediaElement::endIgnoringTrackDisplayUpdateRequests() |
1258 { | 1258 { |
1259 ASSERT(m_ignoreTrackDisplayUpdate); | 1259 ASSERT(m_ignoreTrackDisplayUpdate); |
1260 --m_ignoreTrackDisplayUpdate; | 1260 --m_ignoreTrackDisplayUpdate; |
1261 if (!m_ignoreTrackDisplayUpdate && m_inActiveDocument) | 1261 if (!m_ignoreTrackDisplayUpdate && m_inActiveDocument) |
1262 updateActiveTextTrackCues(currentTime()); | 1262 updateActiveTextTrackCues(currentTime()); |
1263 } | 1263 } |
1264 | 1264 |
1265 void HTMLMediaElement::textTrackAddCues(TextTrack*, const TextTrackCueList* cues ) | 1265 void HTMLMediaElement::textTrackAddCues(TextTrack* track, const TextTrackCueList * cues) |
1266 { | 1266 { |
1267 LOG(Media, "HTMLMediaElement::textTrackAddCues"); | 1267 LOG(Media, "HTMLMediaElement::textTrackAddCues"); |
1268 ASSERT(track->mode() != TextTrack::disabledKeyword()); | |
adamk
2013/07/08 19:16:38
Not sure if we have any compilers that actually co
acolwell GONE FROM CHROMIUM
2013/07/08 19:25:48
Done.
| |
1268 | 1269 |
1269 TrackDisplayUpdateScope scope(this); | 1270 TrackDisplayUpdateScope scope(this); |
1270 for (size_t i = 0; i < cues->length(); ++i) | 1271 for (size_t i = 0; i < cues->length(); ++i) |
1271 textTrackAddCue(cues->item(i)->track(), cues->item(i)); | 1272 textTrackAddCue(cues->item(i)->track(), cues->item(i)); |
1272 } | 1273 } |
1273 | 1274 |
1274 void HTMLMediaElement::textTrackRemoveCues(TextTrack*, const TextTrackCueList* c ues) | 1275 void HTMLMediaElement::textTrackRemoveCues(TextTrack*, const TextTrackCueList* c ues) |
1275 { | 1276 { |
1276 LOG(Media, "HTMLMediaElement::textTrackRemoveCues"); | 1277 LOG(Media, "HTMLMediaElement::textTrackRemoveCues"); |
1277 | 1278 |
(...skipping 2687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3965 info.addMember(m_mediaGroup, "mediaGroup"); | 3966 info.addMember(m_mediaGroup, "mediaGroup"); |
3966 info.addMember(m_mediaController, "mediaController"); | 3967 info.addMember(m_mediaController, "mediaController"); |
3967 | 3968 |
3968 #if ENABLE(WEB_AUDIO) | 3969 #if ENABLE(WEB_AUDIO) |
3969 info.addMember(m_audioSourceNode, "audioSourceNode"); | 3970 info.addMember(m_audioSourceNode, "audioSourceNode"); |
3970 #endif | 3971 #endif |
3971 | 3972 |
3972 } | 3973 } |
3973 | 3974 |
3974 } | 3975 } |
OLD | NEW |