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 18 matching lines...) Expand all Loading... |
29 #include <limits> | 29 #include <limits> |
30 #include "ApplicationCacheHost.h" | 30 #include "ApplicationCacheHost.h" |
31 #include "Attribute.h" | 31 #include "Attribute.h" |
32 #include "CSSPropertyNames.h" | 32 #include "CSSPropertyNames.h" |
33 #include "CSSValueKeywords.h" | 33 #include "CSSValueKeywords.h" |
34 #include "Chrome.h" | 34 #include "Chrome.h" |
35 #include "ChromeClient.h" | 35 #include "ChromeClient.h" |
36 #include "ClientRect.h" | 36 #include "ClientRect.h" |
37 #include "ClientRectList.h" | 37 #include "ClientRectList.h" |
38 #include "ContentSecurityPolicy.h" | 38 #include "ContentSecurityPolicy.h" |
39 #include "ContentType.h" | |
40 #include "DiagnosticLoggingKeys.h" | 39 #include "DiagnosticLoggingKeys.h" |
41 #include "DocumentLoader.h" | 40 #include "DocumentLoader.h" |
42 #include "ElementShadow.h" | 41 #include "ElementShadow.h" |
43 #include "Event.h" | 42 #include "Event.h" |
44 #include "EventNames.h" | 43 #include "EventNames.h" |
45 #include "ExceptionCode.h" | 44 #include "ExceptionCode.h" |
46 #include "ExceptionCodePlaceholder.h" | 45 #include "ExceptionCodePlaceholder.h" |
47 #include "Frame.h" | 46 #include "Frame.h" |
48 #include "FrameLoader.h" | 47 #include "FrameLoader.h" |
49 #include "FrameLoaderClient.h" | 48 #include "FrameLoaderClient.h" |
50 #include "FrameView.h" | 49 #include "FrameView.h" |
51 #include "HTMLDocument.h" | 50 #include "HTMLDocument.h" |
52 #include "HTMLNames.h" | 51 #include "HTMLNames.h" |
53 #include "HTMLSourceElement.h" | 52 #include "HTMLSourceElement.h" |
54 #include "HTMLVideoElement.h" | 53 #include "HTMLVideoElement.h" |
55 #include "Language.h" | |
56 #include "Logging.h" | |
57 #include "MIMETypeRegistry.h" | |
58 #include "MediaController.h" | 54 #include "MediaController.h" |
59 #include "MediaControls.h" | 55 #include "MediaControls.h" |
60 #include "MediaDocument.h" | 56 #include "MediaDocument.h" |
61 #include "MediaError.h" | 57 #include "MediaError.h" |
62 #include "MediaFragmentURIParser.h" | 58 #include "MediaFragmentURIParser.h" |
63 #include "MediaKeyError.h" | 59 #include "MediaKeyError.h" |
64 #include "MediaKeyEvent.h" | 60 #include "MediaKeyEvent.h" |
65 #include "MediaList.h" | 61 #include "MediaList.h" |
66 #include "MediaQueryEvaluator.h" | 62 #include "MediaQueryEvaluator.h" |
67 #include "MediaSource.h" | 63 #include "MediaSource.h" |
68 #include "MediaSourceRegistry.h" | 64 #include "MediaSourceRegistry.h" |
69 #include "MouseEvent.h" | 65 #include "MouseEvent.h" |
70 #include "NodeRenderingContext.h" | 66 #include "NodeRenderingContext.h" |
71 #include "Page.h" | 67 #include "Page.h" |
72 #include "PageGroup.h" | 68 #include "PageGroup.h" |
73 #include "RenderLayerCompositor.h" | 69 #include "RenderLayerCompositor.h" |
74 #include "RenderVideo.h" | 70 #include "RenderVideo.h" |
75 #include "RenderView.h" | 71 #include "RenderView.h" |
76 #include "ScriptController.h" | 72 #include "ScriptController.h" |
77 #include "ScriptEventListener.h" | 73 #include "ScriptEventListener.h" |
78 #include "SecurityOrigin.h" | 74 #include "SecurityOrigin.h" |
79 #include "SecurityPolicy.h" | 75 #include "SecurityPolicy.h" |
80 #include "Settings.h" | 76 #include "Settings.h" |
81 #include "ShadowRoot.h" | 77 #include "ShadowRoot.h" |
82 #include "TimeRanges.h" | 78 #include "TimeRanges.h" |
83 #include "WebCoreMemoryInstrumentation.h" | 79 #include "WebCoreMemoryInstrumentation.h" |
| 80 #include "core/platform/ContentType.h" |
| 81 #include "core/platform/Language.h" |
| 82 #include "core/platform/Logging.h" |
| 83 #include "core/platform/MIMETypeRegistry.h" |
84 #include "core/platform/graphics/MediaPlayer.h" | 84 #include "core/platform/graphics/MediaPlayer.h" |
85 #include <wtf/CurrentTime.h> | 85 #include <wtf/CurrentTime.h> |
86 #include <wtf/MathExtras.h> | 86 #include <wtf/MathExtras.h> |
87 #include <wtf/MemoryInstrumentationVector.h> | 87 #include <wtf/MemoryInstrumentationVector.h> |
88 #include <wtf/NonCopyingSort.h> | 88 #include <wtf/NonCopyingSort.h> |
89 #include <wtf/text/CString.h> | 89 #include <wtf/text/CString.h> |
90 #include <wtf/Uint8Array.h> | 90 #include <wtf/Uint8Array.h> |
91 | 91 |
92 #include "CaptionUserPreferences.h" | 92 #include "CaptionUserPreferences.h" |
93 #include "HTMLTrackElement.h" | 93 #include "HTMLTrackElement.h" |
(...skipping 4356 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 |