| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "WebMediaPlayerClientImpl.h" | 6 #include "WebMediaPlayerClientImpl.h" |
| 7 | 7 |
| 8 #include "InbandTextTrackPrivateImpl.h" | 8 #include "InbandTextTrackPrivateImpl.h" |
| 9 #include "MediaSourcePrivateImpl.h" | 9 #include "MediaSourcePrivateImpl.h" |
| 10 #include "WebDocument.h" | 10 #include "WebDocument.h" |
| 11 #include "WebFrameClient.h" | 11 #include "WebFrameClient.h" |
| 12 #include "WebFrameImpl.h" | 12 #include "WebFrameImpl.h" |
| 13 #include "WebHelperPluginImpl.h" | 13 #include "WebHelperPluginImpl.h" |
| 14 #include "WebInbandTextTrack.h" | 14 #include "WebInbandTextTrack.h" |
| 15 #include "WebMediaPlayer.h" | 15 #include "WebMediaPlayer.h" |
| 16 #include "WebViewImpl.h" | 16 #include "WebViewImpl.h" |
| 17 #include "core/html/HTMLMediaElement.h" | 17 #include "core/html/HTMLMediaElement.h" |
| 18 #include "core/html/HTMLMediaSource.h" | 18 #include "core/html/HTMLMediaSource.h" |
| 19 #include "core/html/TimeRanges.h" | 19 #include "core/html/TimeRanges.h" |
| 20 #include "core/frame/Frame.h" | 20 #include "core/frame/Frame.h" |
| 21 #include "platform/NotImplemented.h" | |
| 22 #include "platform/audio/AudioBus.h" | 21 #include "platform/audio/AudioBus.h" |
| 23 #include "platform/audio/AudioSourceProvider.h" | 22 #include "platform/audio/AudioSourceProvider.h" |
| 24 #include "platform/audio/AudioSourceProviderClient.h" | 23 #include "platform/audio/AudioSourceProviderClient.h" |
| 25 #include "core/platform/graphics/GraphicsContext.h" | 24 #include "core/platform/graphics/GraphicsContext.h" |
| 26 #include "core/platform/graphics/GraphicsLayer.h" | 25 #include "core/platform/graphics/GraphicsLayer.h" |
| 27 #include "core/platform/graphics/MediaPlayer.h" | 26 #include "core/platform/graphics/MediaPlayer.h" |
| 28 #include "core/rendering/RenderLayerCompositor.h" | 27 #include "core/rendering/RenderLayerCompositor.h" |
| 29 #include "core/rendering/RenderView.h" | 28 #include "core/rendering/RenderView.h" |
| 30 #include "modules/mediastream/MediaStreamRegistry.h" | 29 #include "modules/mediastream/MediaStreamRegistry.h" |
| 31 #include "platform/geometry/IntSize.h" | 30 #include "platform/geometry/IntSize.h" |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 | 747 |
| 749 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel
s, float sampleRate) | 748 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel
s, float sampleRate) |
| 750 { | 749 { |
| 751 if (m_client) | 750 if (m_client) |
| 752 m_client->setFormat(numberOfChannels, sampleRate); | 751 m_client->setFormat(numberOfChannels, sampleRate); |
| 753 } | 752 } |
| 754 | 753 |
| 755 #endif | 754 #endif |
| 756 | 755 |
| 757 } // namespace WebKit | 756 } // namespace WebKit |
| OLD | NEW |