| 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 "core/html/track/TextTrack.h" | 32 #include "core/html/track/TextTrack.h" |
| 33 #include "core/html/track/TextTrackCue.h" | 33 #include "core/html/track/TextTrackCue.h" |
| 34 #include "core/html/track/vtt/VTTCue.h" | 34 #include "core/html/track/vtt/VTTCue.h" |
| 35 #include "platform/PODIntervalTree.h" | 35 #include "platform/PODIntervalTree.h" |
| 36 #include "platform/Supplementable.h" | 36 #include "platform/Supplementable.h" |
| 37 #include "platform/graphics/media/MediaPlayer.h" | 37 #include "platform/graphics/media/MediaPlayer.h" |
| 38 #include "public/platform/WebMediaPlayerClient.h" | 38 #include "public/platform/WebMediaPlayerClient.h" |
| 39 #include "public/platform/WebMimeRegistry.h" | 39 #include "public/platform/WebMimeRegistry.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 class WebContentDecryptionModule; | |
| 43 class WebInbandTextTrack; | 42 class WebInbandTextTrack; |
| 44 class WebLayer; | 43 class WebLayer; |
| 45 } | 44 } |
| 46 | 45 |
| 47 namespace blink { | 46 namespace blink { |
| 48 | 47 |
| 49 #if ENABLE(WEB_AUDIO) | 48 #if ENABLE(WEB_AUDIO) |
| 50 class AudioSourceProvider; | 49 class AudioSourceProvider; |
| 51 class AudioSourceProviderClient; | 50 class AudioSourceProviderClient; |
| 52 #endif | 51 #endif |
| (...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 inline bool isHTMLMediaElement(const HTMLElement& element) | 630 inline bool isHTMLMediaElement(const HTMLElement& element) |
| 632 { | 631 { |
| 633 return isHTMLAudioElement(element) || isHTMLVideoElement(element); | 632 return isHTMLAudioElement(element) || isHTMLVideoElement(element); |
| 634 } | 633 } |
| 635 | 634 |
| 636 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); | 635 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); |
| 637 | 636 |
| 638 } // namespace blink | 637 } // namespace blink |
| 639 | 638 |
| 640 #endif // HTMLMediaElement_h | 639 #endif // HTMLMediaElement_h |
| OLD | NEW |