| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 #include "core/layout/LayoutView.h" | 64 #include "core/layout/LayoutView.h" |
| 65 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" | 65 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" |
| 66 #include "core/loader/FrameLoader.h" | 66 #include "core/loader/FrameLoader.h" |
| 67 #include "core/loader/FrameLoaderClient.h" | 67 #include "core/loader/FrameLoaderClient.h" |
| 68 #include "platform/ContentType.h" | 68 #include "platform/ContentType.h" |
| 69 #include "platform/Logging.h" | 69 #include "platform/Logging.h" |
| 70 #include "platform/MIMETypeFromURL.h" | 70 #include "platform/MIMETypeFromURL.h" |
| 71 #include "platform/MIMETypeRegistry.h" | 71 #include "platform/MIMETypeRegistry.h" |
| 72 #include "platform/RuntimeEnabledFeatures.h" | 72 #include "platform/RuntimeEnabledFeatures.h" |
| 73 #include "platform/UserGestureIndicator.h" | 73 #include "platform/UserGestureIndicator.h" |
| 74 #include "platform/audio/AudioBus.h" | |
| 75 #include "platform/audio/AudioSourceProviderClient.h" | |
| 76 #include "platform/graphics/GraphicsLayer.h" | 74 #include "platform/graphics/GraphicsLayer.h" |
| 77 #include "platform/weborigin/SecurityOrigin.h" | 75 #include "platform/weborigin/SecurityOrigin.h" |
| 78 #include "public/platform/Platform.h" | 76 #include "public/platform/Platform.h" |
| 79 #include "public/platform/WebAudioSourceProvider.h" | |
| 80 #include "public/platform/WebContentDecryptionModule.h" | 77 #include "public/platform/WebContentDecryptionModule.h" |
| 81 #include "public/platform/WebInbandTextTrack.h" | 78 #include "public/platform/WebInbandTextTrack.h" |
| 82 #include "wtf/CurrentTime.h" | 79 #include "wtf/CurrentTime.h" |
| 83 #include "wtf/MainThread.h" | 80 #include "wtf/MainThread.h" |
| 84 #include "wtf/MathExtras.h" | 81 #include "wtf/MathExtras.h" |
| 85 #include "wtf/text/CString.h" | 82 #include "wtf/text/CString.h" |
| 86 #include <limits> | 83 #include <limits> |
| 87 | 84 |
| 88 #if ENABLE(WEB_AUDIO) | 85 #if ENABLE(WEB_AUDIO) |
| 89 #include "platform/audio/AudioSourceProvider.h" | 86 #include "platform/audio/AudioBus.h" |
| 90 #include "platform/audio/AudioSourceProviderClient.h" | 87 #include "platform/audio/AudioSourceProviderClient.h" |
| 88 #include "public/platform/WebAudioSourceProvider.h" |
| 91 #endif | 89 #endif |
| 92 | 90 |
| 93 using blink::WebInbandTextTrack; | 91 using blink::WebInbandTextTrack; |
| 94 using blink::WebMediaPlayer; | 92 using blink::WebMediaPlayer; |
| 95 using blink::WebMimeRegistry; | 93 using blink::WebMimeRegistry; |
| 96 using blink::WebMediaPlayerClient; | 94 using blink::WebMediaPlayerClient; |
| 97 | 95 |
| 98 namespace blink { | 96 namespace blink { |
| 99 | 97 |
| 100 #if !LOG_DISABLED | 98 #if !LOG_DISABLED |
| (...skipping 3688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3789 visitor->trace(m_client); | 3787 visitor->trace(m_client); |
| 3790 } | 3788 } |
| 3791 | 3789 |
| 3792 DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl) | 3790 DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl) |
| 3793 { | 3791 { |
| 3794 visitor->trace(m_client); | 3792 visitor->trace(m_client); |
| 3795 } | 3793 } |
| 3796 #endif | 3794 #endif |
| 3797 | 3795 |
| 3798 } | 3796 } |
| OLD | NEW |