| Index: third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
|
| index 4a605cea90327c55211e902c89ed7a102e9ca6cb..92ffa748ecdc6a1aeec8f777515e38c4d28c7e7e 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
|
| @@ -21,7 +21,7 @@ namespace {
|
|
|
| class EmptyWebMediaPlayer : public WebMediaPlayer {
|
| public:
|
| - void load(LoadType, const WebURL&, CORSMode) override { };
|
| + void load(LoadType, const WebMediaElementSource&, CORSMode) override { };
|
| void play() override { };
|
| void pause() override { };
|
| bool supportsSave() const override { return false; };
|
| @@ -63,7 +63,7 @@ public:
|
| return adoptPtrWillBeNoop(new StubFrameLoaderClient);
|
| }
|
|
|
| - PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaPlayer::LoadType, const WebURL&, WebMediaPlayerClient*) override
|
| + PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaPlayer::LoadType, const WebMediaElementSource&, WebMediaPlayerClient*) override
|
| {
|
| return adoptPtr(new MockWebMediaPlayer);
|
| }
|
|
|