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

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

Issue 940373003: Rename RenderText to LayoutText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Merge w/HEAD again 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
Index: Source/core/page/TouchAdjustment.cpp
diff --git a/Source/core/page/TouchAdjustment.cpp b/Source/core/page/TouchAdjustment.cpp
index ec28196c6a1d4b5c8cbb9ad445ff9039a05f10f7..db363622b11df17fdd59eddb941d20a40ab4f256 100644
--- a/Source/core/page/TouchAdjustment.cpp
+++ b/Source/core/page/TouchAdjustment.cpp
@@ -31,8 +31,8 @@
#include "core/html/HTMLFrameOwnerElement.h"
#include "core/layout/LayoutBox.h"
#include "core/layout/LayoutObject.h"
+#include "core/layout/LayoutText.h"
#include "core/layout/style/LayoutStyle.h"
-#include "core/rendering/RenderText.h"
#include "platform/geometry/FloatPoint.h"
#include "platform/geometry/FloatQuad.h"
#include "platform/geometry/IntSize.h"
@@ -166,7 +166,7 @@ static inline void appendContextSubtargetsForNode(Node* node, SubtargetGeometryL
return appendBasicSubtargetsForNode(node, subtargets);
Text* textNode = toText(node);
- RenderText* textRenderer = textNode->renderer();
+ LayoutText* textRenderer = textNode->renderer();
if (textRenderer->frame()->editor().behavior().shouldSelectOnContextualMenuClick()) {
// Make subtargets out of every word.

Powered by Google App Engine
This is Rietveld 408576698