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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp

Issue 2719813002: Rename classes that derived from EmptyLocalFrameClient. (Closed)
Patch Set: Created 3 years, 10 months 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 side-by-side diff with in-line comments
Download patch
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());

Powered by Google App Engine
This is Rietveld 408576698