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

Unified Diff: third_party/WebKit/Source/core/paint/VideoPainterTest.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
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintPropertyTreePrinterTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/VideoPainterTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp b/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp
index 1d9940a29324a24394697f870fbea72466a6e1bb..1e649de57dffec6cbf0ce9f9379abc14b3ceb7c5 100644
--- a/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp
+++ b/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp
@@ -79,7 +79,7 @@ class StubWebMediaPlayer : public WebMediaPlayer {
ReadyState m_readyState = ReadyStateHaveNothing;
};
-class StubFrameLoaderClient : public EmptyLocalFrameClient {
+class StubLocalFrameClient : public EmptyLocalFrameClient {
public:
// FrameLoaderClient
std::unique_ptr<WebMediaPlayer> createWebMediaPlayer(
@@ -98,12 +98,12 @@ class VideoPainterTestForSPv2 : public ::testing::Test,
protected:
void SetUp() override {
m_chromeClient = new StubChromeClientForSPv2();
- m_frameLoaderClient = new StubFrameLoaderClient;
+ m_localFrameClient = new StubLocalFrameClient;
Page::PageClients clients;
fillWithEmptyClients(clients);
clients.chromeClient = m_chromeClient.get();
m_pageHolder = DummyPageHolder::create(
- IntSize(800, 600), &clients, m_frameLoaderClient.get(),
+ IntSize(800, 600), &clients, m_localFrameClient.get(),
[](Settings& settings) {
settings.setAcceleratedCompositingEnabled(true);
});
@@ -119,7 +119,7 @@ class VideoPainterTestForSPv2 : public ::testing::Test,
private:
Persistent<StubChromeClientForSPv2> m_chromeClient;
- Persistent<StubFrameLoaderClient> m_frameLoaderClient;
+ Persistent<StubLocalFrameClient> m_localFrameClient;
std::unique_ptr<DummyPageHolder> m_pageHolder;
};
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintPropertyTreePrinterTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698