| 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 e2fbb61bb8c6c021f4e2fa34678ed379714161ec..0d438b606b352c7bd68d93f3e0ccd85fa0b41d7d 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
|
| @@ -64,9 +64,9 @@ class MockWebMediaPlayer : public EmptyWebMediaPlayer {
|
| MOCK_METHOD1(setBufferingStrategy, void(BufferingStrategy));
|
| };
|
|
|
| -class StubFrameLoaderClient : public EmptyLocalFrameClient {
|
| +class StubLocalFrameClient : public EmptyLocalFrameClient {
|
| public:
|
| - static StubFrameLoaderClient* create() { return new StubFrameLoaderClient; }
|
| + static StubLocalFrameClient* create() { return new StubLocalFrameClient; }
|
|
|
| std::unique_ptr<WebMediaPlayer> createWebMediaPlayer(
|
| HTMLMediaElement&,
|
| @@ -84,7 +84,7 @@ class HTMLVideoElementTest : public ::testing::Test {
|
| : m_dummyPageHolder(
|
| DummyPageHolder::create(IntSize(640, 360),
|
| nullptr,
|
| - StubFrameLoaderClient::create())) {
|
| + StubLocalFrameClient::create())) {
|
| // TODO(sandersd): This should be done by a settings initializer.
|
| networkStateNotifier().setWebConnection(WebConnectionTypeWifi, 54.0);
|
| m_video = HTMLVideoElement::create(m_dummyPageHolder->document());
|
|
|