| 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" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "core/rendering/RenderView.h" | 28 #include "core/rendering/RenderView.h" |
| 29 #include "modules/mediastream/MediaStreamRegistry.h" | 29 #include "modules/mediastream/MediaStreamRegistry.h" |
| 30 #include "platform/geometry/IntSize.h" | 30 #include "platform/geometry/IntSize.h" |
| 31 #include "public/platform/WebAudioSourceProvider.h" | 31 #include "public/platform/WebAudioSourceProvider.h" |
| 32 #include "public/platform/WebCanvas.h" | 32 #include "public/platform/WebCanvas.h" |
| 33 #include "public/platform/WebCompositorSupport.h" | 33 #include "public/platform/WebCompositorSupport.h" |
| 34 #include "public/platform/WebCString.h" | 34 #include "public/platform/WebCString.h" |
| 35 #include "public/platform/WebRect.h" | 35 #include "public/platform/WebRect.h" |
| 36 #include "public/platform/WebString.h" | 36 #include "public/platform/WebString.h" |
| 37 #include "public/platform/WebURL.h" | 37 #include "public/platform/WebURL.h" |
| 38 #include "weborigin/KURL.h" | 38 #include "platform/weborigin/KURL.h" |
| 39 | 39 |
| 40 #if OS(ANDROID) | 40 #if OS(ANDROID) |
| 41 #include "GrContext.h" | 41 #include "GrContext.h" |
| 42 #include "GrTypes.h" | 42 #include "GrTypes.h" |
| 43 #include "SkCanvas.h" | 43 #include "SkCanvas.h" |
| 44 #include "SkGrPixelRef.h" | 44 #include "SkGrPixelRef.h" |
| 45 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" | 45 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" |
| 46 #endif | 46 #endif |
| 47 | 47 |
| 48 | 48 |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 | 754 |
| 755 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel
s, float sampleRate) | 755 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel
s, float sampleRate) |
| 756 { | 756 { |
| 757 if (m_client) | 757 if (m_client) |
| 758 m_client->setFormat(numberOfChannels, sampleRate); | 758 m_client->setFormat(numberOfChannels, sampleRate); |
| 759 } | 759 } |
| 760 | 760 |
| 761 #endif | 761 #endif |
| 762 | 762 |
| 763 } // namespace WebKit | 763 } // namespace WebKit |
| OLD | NEW |