| 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 21 matching lines...) Expand all Loading... |
| 32 #include "HTMLDocument.h" | 32 #include "HTMLDocument.h" |
| 33 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
| 34 #include "HTMLSourceElement.h" | 34 #include "HTMLSourceElement.h" |
| 35 #include "HTMLVideoElement.h" | 35 #include "HTMLVideoElement.h" |
| 36 #include "MediaController.h" | 36 #include "MediaController.h" |
| 37 #include "MediaDocument.h" | 37 #include "MediaDocument.h" |
| 38 #include "MediaError.h" | 38 #include "MediaError.h" |
| 39 #include "MediaFragmentURIParser.h" | 39 #include "MediaFragmentURIParser.h" |
| 40 #include "MediaKeyError.h" | 40 #include "MediaKeyError.h" |
| 41 #include "MediaKeyEvent.h" | 41 #include "MediaKeyEvent.h" |
| 42 #include "ScriptController.h" | |
| 43 #include "ScriptEventListener.h" | |
| 44 #include "TimeRanges.h" | 42 #include "TimeRanges.h" |
| 43 #include "bindings/v8/ScriptController.h" |
| 44 #include "bindings/v8/ScriptEventListener.h" |
| 45 #include "core/css/MediaList.h" | 45 #include "core/css/MediaList.h" |
| 46 #include "core/css/MediaQueryEvaluator.h" | 46 #include "core/css/MediaQueryEvaluator.h" |
| 47 #include "core/dom/Attribute.h" | 47 #include "core/dom/Attribute.h" |
| 48 #include "core/dom/ClientRect.h" | 48 #include "core/dom/ClientRect.h" |
| 49 #include "core/dom/ClientRectList.h" | 49 #include "core/dom/ClientRectList.h" |
| 50 #include "core/dom/ElementShadow.h" | 50 #include "core/dom/ElementShadow.h" |
| 51 #include "core/dom/Event.h" | 51 #include "core/dom/Event.h" |
| 52 #include "core/dom/EventNames.h" | 52 #include "core/dom/EventNames.h" |
| 53 #include "core/dom/ExceptionCode.h" | 53 #include "core/dom/ExceptionCode.h" |
| 54 #include "core/dom/ExceptionCodePlaceholder.h" | 54 #include "core/dom/ExceptionCodePlaceholder.h" |
| (...skipping 4387 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 |