| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 #include "CaptionUserPreferences.h" | 92 #include "CaptionUserPreferences.h" |
| 93 #include "HTMLTrackElement.h" | 93 #include "HTMLTrackElement.h" |
| 94 #include "InbandTextTrack.h" | 94 #include "InbandTextTrack.h" |
| 95 #include "RuntimeEnabledFeatures.h" | 95 #include "RuntimeEnabledFeatures.h" |
| 96 #include "TextTrackCueList.h" | 96 #include "TextTrackCueList.h" |
| 97 #include "TextTrackList.h" | 97 #include "TextTrackList.h" |
| 98 #include "core/platform/graphics/InbandTextTrackPrivate.h" | 98 #include "core/platform/graphics/InbandTextTrackPrivate.h" |
| 99 | 99 |
| 100 #if ENABLE(WEB_AUDIO) | 100 #if ENABLE(WEB_AUDIO) |
| 101 #include "AudioSourceProvider.h" | |
| 102 #include "MediaElementAudioSourceNode.h" | 101 #include "MediaElementAudioSourceNode.h" |
| 102 #include "core/platform/audio/AudioSourceProvider.h" |
| 103 #endif | 103 #endif |
| 104 | 104 |
| 105 #if ENABLE(MEDIA_STREAM) | 105 #if ENABLE(MEDIA_STREAM) |
| 106 #include "MediaStreamRegistry.h" | 106 #include "MediaStreamRegistry.h" |
| 107 #endif | 107 #endif |
| 108 | 108 |
| 109 #if ENABLE(ENCRYPTED_MEDIA_V2) | 109 #if ENABLE(ENCRYPTED_MEDIA_V2) |
| 110 #include "MediaKeyNeededEvent.h" | 110 #include "MediaKeyNeededEvent.h" |
| 111 #include "MediaKeys.h" | 111 #include "MediaKeys.h" |
| 112 #endif | 112 #endif |
| (...skipping 4337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4450 info.addMember(m_mediaGroup, "mediaGroup"); | 4450 info.addMember(m_mediaGroup, "mediaGroup"); |
| 4451 info.addMember(m_mediaController, "mediaController"); | 4451 info.addMember(m_mediaController, "mediaController"); |
| 4452 | 4452 |
| 4453 #if ENABLE(WEB_AUDIO) | 4453 #if ENABLE(WEB_AUDIO) |
| 4454 info.addMember(m_audioSourceNode, "audioSourceNode"); | 4454 info.addMember(m_audioSourceNode, "audioSourceNode"); |
| 4455 #endif | 4455 #endif |
| 4456 | 4456 |
| 4457 } | 4457 } |
| 4458 | 4458 |
| 4459 } | 4459 } |
| OLD | NEW |