Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Side by Side Diff: Source/web/WebMediaPlayerClientImpl.cpp

Issue 104023007: Refactoring ImageBuffer to decouple it from Canvas2DLayerBridge (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase mayhem Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/rendering/RenderLayerCompositor.h" 17 #include "core/rendering/RenderLayerCompositor.h"
18 #include "core/rendering/RenderView.h" 18 #include "core/rendering/RenderView.h"
19 #include "modules/mediastream/MediaStreamRegistry.h" 19 #include "modules/mediastream/MediaStreamRegistry.h"
20 #include "platform/audio/AudioBus.h" 20 #include "platform/audio/AudioBus.h"
21 #include "platform/audio/AudioSourceProviderClient.h" 21 #include "platform/audio/AudioSourceProviderClient.h"
22 #include "platform/geometry/IntSize.h" 22 #include "platform/geometry/IntSize.h"
23 #include "platform/graphics/GraphicsContext.h" 23 #include "platform/graphics/GraphicsContext.h"
24 #include "platform/graphics/GraphicsContext3D.h"
24 #include "platform/graphics/GraphicsLayer.h" 25 #include "platform/graphics/GraphicsLayer.h"
25 #include "platform/graphics/skia/GaneshUtils.h" 26 #include "platform/graphics/skia/GaneshUtils.h"
26 #include "public/platform/WebAudioSourceProvider.h" 27 #include "public/platform/WebAudioSourceProvider.h"
27 #include "public/platform/WebCString.h" 28 #include "public/platform/WebCString.h"
28 #include "public/platform/WebCanvas.h" 29 #include "public/platform/WebCanvas.h"
29 #include "public/platform/WebCompositorSupport.h" 30 #include "public/platform/WebCompositorSupport.h"
30 #include "public/platform/WebInbandTextTrack.h" 31 #include "public/platform/WebInbandTextTrack.h"
31 #include "public/platform/WebMediaPlayer.h" 32 #include "public/platform/WebMediaPlayer.h"
32 #include "public/platform/WebRect.h" 33 #include "public/platform/WebRect.h"
33 #include "public/platform/WebString.h" 34 #include "public/platform/WebString.h"
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 681
681 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel s, float sampleRate) 682 void WebMediaPlayerClientImpl::AudioClientImpl::setFormat(size_t numberOfChannel s, float sampleRate)
682 { 683 {
683 if (m_client) 684 if (m_client)
684 m_client->setFormat(numberOfChannels, sampleRate); 685 m_client->setFormat(numberOfChannels, sampleRate);
685 } 686 }
686 687
687 #endif 688 #endif
688 689
689 } // namespace blink 690 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeMacNonOverlayAPI.mm ('k') | Source/web/tests/Canvas2DLayerBridgeTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698