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 |
11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
12 * | 12 * |
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
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 #include "HTMLMediaElement.h" | 27 #include "HTMLMediaElement.h" |
28 | 28 |
29 #include <limits> | 29 #include <limits> |
30 #include "Attribute.h" | |
31 #include "CSSPropertyNames.h" | 30 #include "CSSPropertyNames.h" |
32 #include "CSSValueKeywords.h" | 31 #include "CSSValueKeywords.h" |
33 #include "ClientRect.h" | |
34 #include "ClientRectList.h" | |
35 #include "ElementShadow.h" | |
36 #include "Event.h" | |
37 #include "EventNames.h" | |
38 #include "ExceptionCode.h" | |
39 #include "ExceptionCodePlaceholder.h" | |
40 #include "HTMLDocument.h" | 32 #include "HTMLDocument.h" |
41 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
42 #include "HTMLSourceElement.h" | 34 #include "HTMLSourceElement.h" |
43 #include "HTMLVideoElement.h" | 35 #include "HTMLVideoElement.h" |
44 #include "MediaController.h" | 36 #include "MediaController.h" |
45 #include "MediaControls.h" | 37 #include "MediaControls.h" |
46 #include "MediaDocument.h" | 38 #include "MediaDocument.h" |
47 #include "MediaError.h" | 39 #include "MediaError.h" |
48 #include "MediaFragmentURIParser.h" | 40 #include "MediaFragmentURIParser.h" |
49 #include "MediaKeyError.h" | 41 #include "MediaKeyError.h" |
50 #include "MediaKeyEvent.h" | 42 #include "MediaKeyEvent.h" |
51 #include "MediaSource.h" | 43 #include "MediaSource.h" |
52 #include "MediaSourceRegistry.h" | 44 #include "MediaSourceRegistry.h" |
53 #include "MouseEvent.h" | |
54 #include "NodeRenderingContext.h" | |
55 #include "ScriptController.h" | 45 #include "ScriptController.h" |
56 #include "ScriptEventListener.h" | 46 #include "ScriptEventListener.h" |
57 #include "ShadowRoot.h" | |
58 #include "TimeRanges.h" | 47 #include "TimeRanges.h" |
59 #include "WebCoreMemoryInstrumentation.h" | |
60 #include "core/css/MediaList.h" | 48 #include "core/css/MediaList.h" |
61 #include "core/css/MediaQueryEvaluator.h" | 49 #include "core/css/MediaQueryEvaluator.h" |
| 50 #include "core/dom/Attribute.h" |
| 51 #include "core/dom/ClientRect.h" |
| 52 #include "core/dom/ClientRectList.h" |
| 53 #include "core/dom/ElementShadow.h" |
| 54 #include "core/dom/Event.h" |
| 55 #include "core/dom/EventNames.h" |
| 56 #include "core/dom/ExceptionCode.h" |
| 57 #include "core/dom/ExceptionCodePlaceholder.h" |
| 58 #include "core/dom/MouseEvent.h" |
| 59 #include "core/dom/NodeRenderingContext.h" |
| 60 #include "core/dom/ShadowRoot.h" |
| 61 #include "core/dom/WebCoreMemoryInstrumentation.h" |
62 #include "core/loader/DocumentLoader.h" | 62 #include "core/loader/DocumentLoader.h" |
63 #include "core/loader/FrameLoader.h" | 63 #include "core/loader/FrameLoader.h" |
64 #include "core/loader/FrameLoaderClient.h" | 64 #include "core/loader/FrameLoaderClient.h" |
65 #include "core/loader/appcache/ApplicationCacheHost.h" | 65 #include "core/loader/appcache/ApplicationCacheHost.h" |
66 #include "core/page/Chrome.h" | 66 #include "core/page/Chrome.h" |
67 #include "core/page/ChromeClient.h" | 67 #include "core/page/ChromeClient.h" |
68 #include "core/page/ContentSecurityPolicy.h" | 68 #include "core/page/ContentSecurityPolicy.h" |
69 #include "core/page/DiagnosticLoggingKeys.h" | 69 #include "core/page/DiagnosticLoggingKeys.h" |
70 #include "core/page/Frame.h" | 70 #include "core/page/Frame.h" |
71 #include "core/page/FrameView.h" | 71 #include "core/page/FrameView.h" |
(...skipping 4370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4442 info.addMember(m_mediaGroup, "mediaGroup"); | 4442 info.addMember(m_mediaGroup, "mediaGroup"); |
4443 info.addMember(m_mediaController, "mediaController"); | 4443 info.addMember(m_mediaController, "mediaController"); |
4444 | 4444 |
4445 #if ENABLE(WEB_AUDIO) | 4445 #if ENABLE(WEB_AUDIO) |
4446 info.addMember(m_audioSourceNode, "audioSourceNode"); | 4446 info.addMember(m_audioSourceNode, "audioSourceNode"); |
4447 #endif | 4447 #endif |
4448 | 4448 |
4449 } | 4449 } |
4450 | 4450 |
4451 } | 4451 } |
OLD | NEW |