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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 #include "core/html/MediaFragmentURIParser.h" | 50 #include "core/html/MediaFragmentURIParser.h" |
51 #include "core/html/TimeRanges.h" | 51 #include "core/html/TimeRanges.h" |
52 #include "core/html/shadow/MediaControls.h" | 52 #include "core/html/shadow/MediaControls.h" |
53 #include "core/html/track/AudioTrack.h" | 53 #include "core/html/track/AudioTrack.h" |
54 #include "core/html/track/AudioTrackList.h" | 54 #include "core/html/track/AudioTrackList.h" |
55 #include "core/html/track/InbandTextTrack.h" | 55 #include "core/html/track/InbandTextTrack.h" |
56 #include "core/html/track/TextTrackCueList.h" | 56 #include "core/html/track/TextTrackCueList.h" |
57 #include "core/html/track/TextTrackList.h" | 57 #include "core/html/track/TextTrackList.h" |
58 #include "core/html/track/VideoTrack.h" | 58 #include "core/html/track/VideoTrack.h" |
59 #include "core/html/track/VideoTrackList.h" | 59 #include "core/html/track/VideoTrackList.h" |
60 #include "core/layout/compositing/RenderLayerCompositor.h" | 60 #include "core/layout/compositing/LayerCompositor.h" |
61 #include "core/loader/FrameLoader.h" | 61 #include "core/loader/FrameLoader.h" |
62 #include "core/rendering/RenderVideo.h" | 62 #include "core/rendering/RenderVideo.h" |
63 #include "core/rendering/RenderView.h" | 63 #include "core/rendering/RenderView.h" |
64 #include "platform/ContentType.h" | 64 #include "platform/ContentType.h" |
65 #include "platform/Language.h" | 65 #include "platform/Language.h" |
66 #include "platform/Logging.h" | 66 #include "platform/Logging.h" |
67 #include "platform/MIMETypeFromURL.h" | 67 #include "platform/MIMETypeFromURL.h" |
68 #include "platform/MIMETypeRegistry.h" | 68 #include "platform/MIMETypeRegistry.h" |
69 #include "platform/RuntimeEnabledFeatures.h" | 69 #include "platform/RuntimeEnabledFeatures.h" |
70 #include "platform/UserGestureIndicator.h" | 70 #include "platform/UserGestureIndicator.h" |
(...skipping 4040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4111 | 4111 |
4112 #if ENABLE(WEB_AUDIO) | 4112 #if ENABLE(WEB_AUDIO) |
4113 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) | 4113 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) |
4114 { | 4114 { |
4115 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider()) | 4115 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider()) |
4116 audioSourceProvider()->setClient(nullptr); | 4116 audioSourceProvider()->setClient(nullptr); |
4117 } | 4117 } |
4118 #endif | 4118 #endif |
4119 | 4119 |
4120 } | 4120 } |
OLD | NEW |