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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTestHelper.cpp

Issue 2715173002: Final rename from FrameLoaderClient to LocalFrameClient: (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/layout/LayoutTestHelper.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTestHelper.cpp b/third_party/WebKit/Source/core/layout/LayoutTestHelper.cpp
index edd0450da70fe73aac31a07cf6744bc40b72dda7..d6677f41e7fd986a597a9d922842fa7373dbc926 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTestHelper.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTestHelper.cpp
@@ -41,15 +41,15 @@ ChromeClient& RenderingTest::chromeClient() const {
return client;
}
-RenderingTest::RenderingTest(FrameLoaderClient* frameLoaderClient)
- : m_frameLoaderClient(frameLoaderClient) {}
+RenderingTest::RenderingTest(LocalFrameClient* localFrameClient)
+ : m_localFrameClient(localFrameClient) {}
void RenderingTest::SetUp() {
Page::PageClients pageClients;
fillWithEmptyClients(pageClients);
pageClients.chromeClient = &chromeClient();
m_pageHolder = DummyPageHolder::create(
- IntSize(800, 600), &pageClients, m_frameLoaderClient, settingOverrider());
+ IntSize(800, 600), &pageClients, m_localFrameClient, settingOverrider());
Settings::setMockScrollbarsEnabled(true);
RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(true);

Powered by Google App Engine
This is Rietveld 408576698