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 22 matching lines...) Expand all Loading... |
33 #include "bindings/v8/ExceptionStatePlaceholder.h" | 33 #include "bindings/v8/ExceptionStatePlaceholder.h" |
34 #include "bindings/v8/ScriptController.h" | 34 #include "bindings/v8/ScriptController.h" |
35 #include "bindings/v8/ScriptEventListener.h" | 35 #include "bindings/v8/ScriptEventListener.h" |
36 #include "core/css/MediaList.h" | 36 #include "core/css/MediaList.h" |
37 #include "core/dom/Attribute.h" | 37 #include "core/dom/Attribute.h" |
38 #include "core/dom/ExceptionCode.h" | 38 #include "core/dom/ExceptionCode.h" |
39 #include "core/dom/FullscreenElementStack.h" | 39 #include "core/dom/FullscreenElementStack.h" |
40 #include "core/dom/shadow/ShadowRoot.h" | 40 #include "core/dom/shadow/ShadowRoot.h" |
41 #include "core/events/Event.h" | 41 #include "core/events/Event.h" |
42 #include "core/events/ThreadLocalEventNames.h" | 42 #include "core/events/ThreadLocalEventNames.h" |
43 #include "core/frame/ContentSecurityPolicy.h" | |
44 #include "core/frame/LocalFrame.h" | 43 #include "core/frame/LocalFrame.h" |
45 #include "core/frame/Settings.h" | 44 #include "core/frame/Settings.h" |
46 #include "core/frame/UseCounter.h" | 45 #include "core/frame/UseCounter.h" |
| 46 #include "core/frame/csp/ContentSecurityPolicy.h" |
47 #include "core/html/HTMLMediaSource.h" | 47 #include "core/html/HTMLMediaSource.h" |
48 #include "core/html/HTMLSourceElement.h" | 48 #include "core/html/HTMLSourceElement.h" |
49 #include "core/html/HTMLTrackElement.h" | 49 #include "core/html/HTMLTrackElement.h" |
50 #include "core/html/MediaController.h" | 50 #include "core/html/MediaController.h" |
51 #include "core/html/MediaError.h" | 51 #include "core/html/MediaError.h" |
52 #include "core/html/MediaFragmentURIParser.h" | 52 #include "core/html/MediaFragmentURIParser.h" |
53 #include "core/html/MediaKeyError.h" | 53 #include "core/html/MediaKeyError.h" |
54 #include "core/html/MediaKeyEvent.h" | 54 #include "core/html/MediaKeyEvent.h" |
55 #include "core/html/TimeRanges.h" | 55 #include "core/html/TimeRanges.h" |
56 #include "core/html/shadow/MediaControls.h" | 56 #include "core/html/shadow/MediaControls.h" |
(...skipping 3872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3929 { | 3929 { |
3930 m_mediaSource->setWebMediaSourceAndOpen(adoptPtr(webMediaSource)); | 3930 m_mediaSource->setWebMediaSourceAndOpen(adoptPtr(webMediaSource)); |
3931 } | 3931 } |
3932 | 3932 |
3933 bool HTMLMediaElement::isInteractiveContent() const | 3933 bool HTMLMediaElement::isInteractiveContent() const |
3934 { | 3934 { |
3935 return fastHasAttribute(controlsAttr); | 3935 return fastHasAttribute(controlsAttr); |
3936 } | 3936 } |
3937 | 3937 |
3938 } | 3938 } |
OLD | NEW |