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

Unified Diff: Source/core/page/TouchAdjustment.cpp

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (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/core/page/SpatialNavigation.cpp ('k') | Source/core/page/scrolling/ScrollingCoordinator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/TouchAdjustment.cpp
diff --git a/Source/core/page/TouchAdjustment.cpp b/Source/core/page/TouchAdjustment.cpp
index 6a6b74a02a04fefdd4615b71c1d6bf177e1f8a63..ec28196c6a1d4b5c8cbb9ad445ff9039a05f10f7 100644
--- a/Source/core/page/TouchAdjustment.cpp
+++ b/Source/core/page/TouchAdjustment.cpp
@@ -29,9 +29,9 @@
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
#include "core/html/HTMLFrameOwnerElement.h"
+#include "core/layout/LayoutBox.h"
#include "core/layout/LayoutObject.h"
#include "core/layout/style/LayoutStyle.h"
-#include "core/rendering/RenderBox.h"
#include "core/rendering/RenderText.h"
#include "platform/geometry/FloatPoint.h"
#include "platform/geometry/FloatQuad.h"
@@ -217,7 +217,7 @@ static inline void appendContextSubtargetsForNode(Node* node, SubtargetGeometryL
static inline void appendZoomableSubtargets(Node* node, SubtargetGeometryList& subtargets)
{
- RenderBox* renderer = toRenderBox(node->renderer());
+ LayoutBox* renderer = toLayoutBox(node->renderer());
ASSERT(renderer);
Vector<FloatQuad> quads;
« no previous file with comments | « Source/core/page/SpatialNavigation.cpp ('k') | Source/core/page/scrolling/ScrollingCoordinator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698