| 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 "WebDocument.h" | 8 #include "WebDocument.h" |
| 9 #include "WebFrameClient.h" | 9 #include "WebFrameClient.h" |
| 10 #include "WebFrameImpl.h" | 10 #include "WebFrameImpl.h" |
| 11 #include "WebHelperPluginImpl.h" | 11 #include "WebHelperPluginImpl.h" |
| 12 #include "WebViewImpl.h" | 12 #include "WebViewImpl.h" |
| 13 #include "core/frame/Frame.h" | 13 #include "core/frame/Frame.h" |
| 14 #include "core/html/HTMLMediaElement.h" | 14 #include "core/html/HTMLMediaElement.h" |
| 15 #include "core/html/HTMLMediaSource.h" | 15 #include "core/html/HTMLMediaSource.h" |
| 16 #include "core/html/TimeRanges.h" | 16 #include "core/html/TimeRanges.h" |
| 17 #include "core/platform/graphics/GaneshUtils.h" | 17 #include "core/platform/graphics/GaneshUtils.h" |
| 18 #include "core/platform/graphics/GraphicsContext.h" | 18 #include "core/platform/graphics/GraphicsContext.h" |
| 19 #include "core/platform/graphics/GraphicsContext3D.h" |
| 19 #include "core/platform/graphics/GraphicsLayer.h" | 20 #include "core/platform/graphics/GraphicsLayer.h" |
| 20 #include "core/rendering/RenderLayerCompositor.h" | 21 #include "core/rendering/RenderLayerCompositor.h" |
| 21 #include "core/rendering/RenderView.h" | 22 #include "core/rendering/RenderView.h" |
| 22 #include "modules/mediastream/MediaStreamRegistry.h" | 23 #include "modules/mediastream/MediaStreamRegistry.h" |
| 23 #include "platform/audio/AudioBus.h" | 24 #include "platform/audio/AudioBus.h" |
| 24 #include "platform/audio/AudioSourceProviderClient.h" | 25 #include "platform/audio/AudioSourceProviderClient.h" |
| 25 #include "platform/geometry/IntSize.h" | 26 #include "platform/geometry/IntSize.h" |
| 26 #include "platform/weborigin/KURL.h" | 27 #include "platform/weborigin/KURL.h" |
| 27 #include "public/platform/WebAudioSourceProvider.h" | 28 #include "public/platform/WebAudioSourceProvider.h" |
| 28 #include "public/platform/WebCString.h" | 29 #include "public/platform/WebCString.h" |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 | 682 |
| 682 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel
s, float sampleRate) | 683 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel
s, float sampleRate) |
| 683 { | 684 { |
| 684 if (m_client) | 685 if (m_client) |
| 685 m_client->setFormat(numberOfChannels, sampleRate); | 686 m_client->setFormat(numberOfChannels, sampleRate); |
| 686 } | 687 } |
| 687 | 688 |
| 688 #endif | 689 #endif |
| 689 | 690 |
| 690 } // namespace blink | 691 } // namespace blink |
| OLD | NEW |