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

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

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase to master 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/editing/InsertIntoTextNodeCommand.cpp
diff --git a/Source/core/editing/InsertIntoTextNodeCommand.cpp b/Source/core/editing/InsertIntoTextNodeCommand.cpp
index cf6057d84a1d2377138f2dfcd4d225bfdfab1c82..6fb0bf161b3aaccfaf9fe3945a957b71e3ff0e16 100644
--- a/Source/core/editing/InsertIntoTextNodeCommand.cpp
+++ b/Source/core/editing/InsertIntoTextNodeCommand.cpp
@@ -55,7 +55,7 @@ void InsertIntoTextNodeCommand::doApply()
return;
if (passwordEchoEnabled) {
- LayoutText* renderText = m_node->renderer();
+ LayoutText* renderText = m_node->layoutObject();
if (renderText && renderText->isSecure())
renderText->momentarilyRevealLastTypedCharacter(m_offset + m_text.length() - 1);
}

Powered by Google App Engine
This is Rietveld 408576698