From 3749d61e1f7a59f5ec5067e560af1eb610c82015 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Sun, 12 Aug 2012 09:27:39 +0200 Subject: Imported WebKit commit a77350243e054f3460d1137301d8b3faee3d2052 (http://svn.webkit.org/repository/webkit/trunk@125365) New snapshot with build fixes for latest API changes in Qt and all WK1 Win MSVC fixes upstream --- .../chromium/src/WebMediaPlayerClientImpl.cpp | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp') diff --git a/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp b/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp index 3ca9f5d0f..c48aa8967 100644 --- a/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp +++ b/Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp @@ -23,18 +23,16 @@ #include "WebFrameClient.h" #include "WebFrameImpl.h" #include "WebHelperPluginImpl.h" -#include "WebKit.h" #include "WebMediaPlayer.h" #include "WebViewImpl.h" -#include "cc/CCProxy.h" -#include "platform/WebCString.h" -#include "platform/WebCanvas.h" -#include "platform/WebKitPlatformSupport.h" -#include "platform/WebRect.h" -#include "platform/WebSize.h" -#include "platform/WebString.h" -#include "platform/WebURL.h" +#include +#include +#include #include +#include +#include +#include +#include #if USE(ACCELERATED_COMPOSITING) #include "RenderLayerCompositor.h" @@ -342,10 +340,10 @@ void WebMediaPlayerClientImpl::cancelLoad() } #if USE(ACCELERATED_COMPOSITING) -LayerChromium* WebMediaPlayerClientImpl::platformLayer() const +WebLayer* WebMediaPlayerClientImpl::platformLayer() const { ASSERT(m_supportsAcceleratedCompositing); - return m_videoLayer.unwrap(); + return const_cast(&m_videoLayer); } #endif @@ -841,14 +839,12 @@ void WebMediaPlayerClientImpl::startDelayedLoad() void WebMediaPlayerClientImpl::didReceiveFrame() { // No lock since this gets called on the client's thread. - ASSERT(CCProxy::isImplThread()); m_videoFrameProviderClient->didReceiveFrame(); } void WebMediaPlayerClientImpl::didUpdateMatrix(const float* matrix) { // No lock since this gets called on the client's thread. - ASSERT(CCProxy::isImplThread()); m_videoFrameProviderClient->didUpdateMatrix(matrix); } -- cgit v1.2.1