| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 #include "core/rendering/RenderVideo.h" | 63 #include "core/rendering/RenderVideo.h" |
| 64 #include "core/rendering/RenderView.h" | 64 #include "core/rendering/RenderView.h" |
| 65 #include "modules/mediastream/MediaStreamRegistry.h" | 65 #include "modules/mediastream/MediaStreamRegistry.h" |
| 66 #include "platform/ContentType.h" | 66 #include "platform/ContentType.h" |
| 67 #include "platform/Language.h" | 67 #include "platform/Language.h" |
| 68 #include "platform/Logging.h" | 68 #include "platform/Logging.h" |
| 69 #include "platform/MIMETypeFromURL.h" | 69 #include "platform/MIMETypeFromURL.h" |
| 70 #include "platform/MIMETypeRegistry.h" | 70 #include "platform/MIMETypeRegistry.h" |
| 71 #include "platform/NotImplemented.h" | 71 #include "platform/NotImplemented.h" |
| 72 #include "platform/UserGestureIndicator.h" | 72 #include "platform/UserGestureIndicator.h" |
| 73 #include "platform/graphics/media/MediaPlayer.h" | |
| 74 #include "platform/weborigin/SecurityOrigin.h" | 73 #include "platform/weborigin/SecurityOrigin.h" |
| 75 #include "public/platform/Platform.h" | 74 #include "public/platform/Platform.h" |
| 76 #include "public/platform/WebInbandTextTrack.h" | 75 #include "public/platform/WebInbandTextTrack.h" |
| 77 #include "wtf/CurrentTime.h" | 76 #include "wtf/CurrentTime.h" |
| 78 #include "wtf/MathExtras.h" | 77 #include "wtf/MathExtras.h" |
| 79 #include "wtf/NonCopyingSort.h" | 78 #include "wtf/NonCopyingSort.h" |
| 80 #include "wtf/Uint8Array.h" | 79 #include "wtf/Uint8Array.h" |
| 81 #include "wtf/text/CString.h" | 80 #include "wtf/text/CString.h" |
| 82 | 81 |
| 83 #if ENABLE(WEB_AUDIO) | 82 #if ENABLE(WEB_AUDIO) |
| (...skipping 3807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3891 { | 3890 { |
| 3892 scheduleLayerUpdate(); | 3891 scheduleLayerUpdate(); |
| 3893 } | 3892 } |
| 3894 | 3893 |
| 3895 bool HTMLMediaElement::isInteractiveContent() const | 3894 bool HTMLMediaElement::isInteractiveContent() const |
| 3896 { | 3895 { |
| 3897 return fastHasAttribute(controlsAttr); | 3896 return fastHasAttribute(controlsAttr); |
| 3898 } | 3897 } |
| 3899 | 3898 |
| 3900 } | 3899 } |
| OLD | NEW |