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

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.cpp

Issue 2164493002: Renamed Node::attach to Node::attachLayoutTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
index 2856e1e711496e496ac47e9655d755f5cf53cf85..c73756007fa1eaf57c57753c53ca00ca2ff36ce3 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
@@ -795,9 +795,9 @@ LayoutObject* HTMLInputElement::createLayoutObject(const ComputedStyle& style)
return m_inputTypeView->createLayoutObject(style);
}
-void HTMLInputElement::attach(const AttachContext& context)
+void HTMLInputElement::attachLayoutTree(const AttachContext& context)
{
- HTMLTextFormControlElement::attach(context);
+ HTMLTextFormControlElement::attachLayoutTree(context);
m_inputTypeView->startResourceLoading();
m_inputType->countUsage();

Powered by Google App Engine
This is Rietveld 408576698