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

Unified Diff: third_party/WebKit/Source/core/html/shadow/MediaControlsOrientationLockDelegateTest.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/shadow/MediaControlsOrientationLockDelegateTest.cpp
diff --git a/third_party/WebKit/Source/core/html/shadow/MediaControlsOrientationLockDelegateTest.cpp b/third_party/WebKit/Source/core/html/shadow/MediaControlsOrientationLockDelegateTest.cpp
index 05796080a9c4f480c0d718ee466909c77eb522c1..571451cfc36b6ec0690216b358c6475793a4d701 100644
--- a/third_party/WebKit/Source/core/html/shadow/MediaControlsOrientationLockDelegateTest.cpp
+++ b/third_party/WebKit/Source/core/html/shadow/MediaControlsOrientationLockDelegateTest.cpp
@@ -79,9 +79,9 @@ class MockChromeClient : public EmptyChromeClient {
MOCK_CONST_METHOD0(screenInfo, WebScreenInfo());
};
-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&,
@@ -144,7 +144,7 @@ class MediaControlsOrientationLockDelegateTest : public ::testing::Test {
clients.chromeClient = m_chromeClient.get();
m_pageHolder = DummyPageHolder::create(IntSize(800, 600), &clients,
- StubFrameLoaderClient::create());
+ StubLocalFrameClient::create());
document().write("<body><video></body>");
m_video = toHTMLVideoElement(*document().querySelector("video"));

Powered by Google App Engine
This is Rietveld 408576698