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

Unified Diff: Source/web/tests/WebFrameTest.cpp

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | « Source/web/tests/ScrollingCoordinatorTest.cpp ('k') | Source/web/tests/WebViewTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/WebFrameTest.cpp
diff --git a/Source/web/tests/WebFrameTest.cpp b/Source/web/tests/WebFrameTest.cpp
index d542239653fd0bca8d3cd1cf958db9e11f2b5037..1e85738e9d7d05d0ceded39e85cede732c33d84e 100644
--- a/Source/web/tests/WebFrameTest.cpp
+++ b/Source/web/tests/WebFrameTest.cpp
@@ -61,7 +61,7 @@
#include "core/html/HTMLFormElement.h"
#include "core/html/HTMLMediaElement.h"
#include "core/layout/HitTestResult.h"
-#include "core/layout/compositing/RenderLayerCompositor.h"
+#include "core/layout/compositing/LayerCompositor.h"
#include "core/loader/DocumentThreadableLoader.h"
#include "core/loader/DocumentThreadableLoaderClient.h"
#include "core/loader/FrameLoadRequest.h"
@@ -6045,7 +6045,7 @@ TEST_F(WebFrameTest, overflowHiddenRewrite)
webViewHelper.webView()->resize(WebSize(100, 100));
FrameTestHelpers::loadFrame(webViewHelper.webView()->mainFrame(), m_baseURL + "non-scrollable.html");
- RenderLayerCompositor* compositor = webViewHelper.webViewImpl()->compositor();
+ LayerCompositor* compositor = webViewHelper.webViewImpl()->compositor();
ASSERT_TRUE(compositor->scrollLayer());
// Verify that the WebLayer is not scrollable initially.
@@ -6384,7 +6384,7 @@ TEST_F(WebFrameTest, FullscreenMediaStreamVideo)
webViewImpl->layout();
// Verify that the video layer is visible in fullscreen.
- RenderLayer* renderLayer = videoFullscreen->renderer()->enclosingLayer();
+ Layer* renderLayer = videoFullscreen->renderer()->enclosingLayer();
GraphicsLayer* graphicsLayer = renderLayer->graphicsLayerBacking();
EXPECT_TRUE(graphicsLayer->contentsAreVisible());
context->notifyContextDestroyed();
« no previous file with comments | « Source/web/tests/ScrollingCoordinatorTest.cpp ('k') | Source/web/tests/WebViewTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698