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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 #include "core/html/track/VideoTrackList.h" | 59 #include "core/html/track/VideoTrackList.h" |
60 #include "core/loader/FrameLoader.h" | 60 #include "core/loader/FrameLoader.h" |
61 #include "core/rendering/RenderVideo.h" | 61 #include "core/rendering/RenderVideo.h" |
62 #include "core/rendering/RenderView.h" | 62 #include "core/rendering/RenderView.h" |
63 #include "core/rendering/compositing/RenderLayerCompositor.h" | 63 #include "core/rendering/compositing/RenderLayerCompositor.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/NotImplemented.h" | |
70 #include "platform/RuntimeEnabledFeatures.h" | 69 #include "platform/RuntimeEnabledFeatures.h" |
71 #include "platform/UserGestureIndicator.h" | 70 #include "platform/UserGestureIndicator.h" |
72 #include "platform/graphics/GraphicsLayer.h" | 71 #include "platform/graphics/GraphicsLayer.h" |
73 #include "platform/weborigin/SecurityOrigin.h" | 72 #include "platform/weborigin/SecurityOrigin.h" |
74 #include "public/platform/Platform.h" | 73 #include "public/platform/Platform.h" |
75 #include "public/platform/WebContentDecryptionModule.h" | 74 #include "public/platform/WebContentDecryptionModule.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" |
(...skipping 3950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4030 | 4029 |
4031 #if ENABLE(WEB_AUDIO) | 4030 #if ENABLE(WEB_AUDIO) |
4032 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) | 4031 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) |
4033 { | 4032 { |
4034 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider()) | 4033 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider()) |
4035 audioSourceProvider()->setClient(0); | 4034 audioSourceProvider()->setClient(0); |
4036 } | 4035 } |
4037 #endif | 4036 #endif |
4038 | 4037 |
4039 } | 4038 } |
OLD | NEW |