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

Unified Diff: third_party/WebKit/Source/core/html/HTMLOptGroupElement.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/HTMLOptGroupElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp b/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp
index 79806ce88199b8025c14243311e9eef602de3e3d..3eb3c97b5fe2d99b06cca63510366575da1eda1a 100644
--- a/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp
@@ -69,13 +69,13 @@ void HTMLOptGroupElement::parseAttribute(const QualifiedName& name, const Atomic
}
}
-void HTMLOptGroupElement::attach(const AttachContext& context)
+void HTMLOptGroupElement::attachLayoutTree(const AttachContext& context)
{
if (context.resolvedStyle) {
ASSERT(!m_style || m_style == context.resolvedStyle);
m_style = context.resolvedStyle;
}
- HTMLElement::attach(context);
+ HTMLElement::attachLayoutTree(context);
}
void HTMLOptGroupElement::detach(const AttachContext& context)

Powered by Google App Engine
This is Rietveld 408576698