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

Unified Diff: Source/core/editing/InsertIntoTextNodeCommand.cpp

Issue 940373003: Rename RenderText to LayoutText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/editing/HTMLInterchange.cpp ('k') | Source/core/editing/InsertLineBreakCommand.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/InsertIntoTextNodeCommand.cpp
diff --git a/Source/core/editing/InsertIntoTextNodeCommand.cpp b/Source/core/editing/InsertIntoTextNodeCommand.cpp
index 8e9c4fb01979debc55d9da061fc337372cd92e1f..cf6057d84a1d2377138f2dfcd4d225bfdfab1c82 100644
--- a/Source/core/editing/InsertIntoTextNodeCommand.cpp
+++ b/Source/core/editing/InsertIntoTextNodeCommand.cpp
@@ -30,7 +30,7 @@
#include "core/dom/Document.h"
#include "core/dom/Text.h"
#include "core/frame/Settings.h"
-#include "core/rendering/RenderText.h"
+#include "core/layout/LayoutText.h"
namespace blink {
@@ -55,7 +55,7 @@ void InsertIntoTextNodeCommand::doApply()
return;
if (passwordEchoEnabled) {
- RenderText* renderText = m_node->renderer();
+ LayoutText* renderText = m_node->renderer();
if (renderText && renderText->isSecure())
renderText->momentarilyRevealLastTypedCharacter(m_offset + m_text.length() - 1);
}
« no previous file with comments | « Source/core/editing/HTMLInterchange.cpp ('k') | Source/core/editing/InsertLineBreakCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698