| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "core/rendering/RenderLayerCompositor.h" | 66 #include "core/rendering/RenderLayerCompositor.h" |
| 67 #include "core/rendering/RenderVideo.h" | 67 #include "core/rendering/RenderVideo.h" |
| 68 #include "core/rendering/RenderView.h" | 68 #include "core/rendering/RenderView.h" |
| 69 #include "modules/mediastream/MediaStreamRegistry.h" | 69 #include "modules/mediastream/MediaStreamRegistry.h" |
| 70 #include "platform/ContentType.h" | 70 #include "platform/ContentType.h" |
| 71 #include "platform/Language.h" | 71 #include "platform/Language.h" |
| 72 #include "platform/Logging.h" | 72 #include "platform/Logging.h" |
| 73 #include "platform/NotImplemented.h" | 73 #include "platform/NotImplemented.h" |
| 74 #include "platform/UserGestureIndicator.h" | 74 #include "platform/UserGestureIndicator.h" |
| 75 #include "public/platform/Platform.h" | 75 #include "public/platform/Platform.h" |
| 76 #include "weborigin/SecurityOrigin.h" | 76 #include "platform/weborigin/SecurityOrigin.h" |
| 77 #include "wtf/CurrentTime.h" | 77 #include "wtf/CurrentTime.h" |
| 78 #include "wtf/MathExtras.h" | 78 #include "wtf/MathExtras.h" |
| 79 #include "wtf/NonCopyingSort.h" | 79 #include "wtf/NonCopyingSort.h" |
| 80 #include "wtf/Uint8Array.h" | 80 #include "wtf/Uint8Array.h" |
| 81 #include "wtf/text/CString.h" | 81 #include "wtf/text/CString.h" |
| 82 | 82 |
| 83 #if ENABLE(WEB_AUDIO) | 83 #if ENABLE(WEB_AUDIO) |
| 84 #include "platform/audio/AudioSourceProvider.h" | 84 #include "platform/audio/AudioSourceProvider.h" |
| 85 #include "modules/webaudio/MediaElementAudioSourceNode.h" | 85 #include "modules/webaudio/MediaElementAudioSourceNode.h" |
| 86 #endif | 86 #endif |
| (...skipping 3781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3868 { | 3868 { |
| 3869 scheduleLayerUpdate(); | 3869 scheduleLayerUpdate(); |
| 3870 } | 3870 } |
| 3871 | 3871 |
| 3872 bool HTMLMediaElement::isInteractiveContent() const | 3872 bool HTMLMediaElement::isInteractiveContent() const |
| 3873 { | 3873 { |
| 3874 return fastHasAttribute(controlsAttr); | 3874 return fastHasAttribute(controlsAttr); |
| 3875 } | 3875 } |
| 3876 | 3876 |
| 3877 } | 3877 } |
| OLD | NEW |