| Index: Source/web/WebMediaPlayerClientImpl.cpp
|
| diff --git a/Source/web/WebMediaPlayerClientImpl.cpp b/Source/web/WebMediaPlayerClientImpl.cpp
|
| index 9b6c0e952b45cbc7cf9533c6c17cb9d7414d8349..059913134535b8455caaea8df1bcf90ab41cfbb8 100644
|
| --- a/Source/web/WebMediaPlayerClientImpl.cpp
|
| +++ b/Source/web/WebMediaPlayerClientImpl.cpp
|
| @@ -48,7 +48,7 @@
|
| #include "wtf/Assertions.h"
|
| #include "wtf/text/CString.h"
|
|
|
| -using namespace WebCore;
|
| +using namespace blink;
|
|
|
| namespace blink {
|
|
|
| @@ -276,7 +276,7 @@ PassOwnPtr<MediaPlayer> WebMediaPlayerClientImpl::create(MediaPlayerClient* clie
|
| }
|
|
|
| #if OS(ANDROID)
|
| -void WebMediaPlayerClientImpl::paintOnAndroid(WebCore::GraphicsContext* context, const IntRect& rect, uint8_t alpha)
|
| +void WebMediaPlayerClientImpl::paintOnAndroid(blink::GraphicsContext* context, const IntRect& rect, uint8_t alpha)
|
| {
|
| OwnPtr<blink::WebGraphicsContext3DProvider> provider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider());
|
| if (!provider)
|
| @@ -322,7 +322,7 @@ WebMediaPlayerClientImpl::WebMediaPlayerClientImpl(MediaPlayerClient* client)
|
| ASSERT(m_client);
|
| }
|
|
|
| -WebCore::HTMLMediaElement& WebMediaPlayerClientImpl::mediaElement() const
|
| +blink::HTMLMediaElement& WebMediaPlayerClientImpl::mediaElement() const
|
| {
|
| return *static_cast<HTMLMediaElement*>(m_client);
|
| }
|
|
|