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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameElement.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/HTMLFrameElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameElement.cpp
index f9ca0a2e6065f9cd0440e5547618737e8d62e20e..e61cc92d2e962e16d40e23e8ecd7b1dc39ebc64a 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFrameElement.cpp
@@ -57,9 +57,9 @@ bool HTMLFrameElement::noResize() const
return hasAttribute(noresizeAttr);
}
-void HTMLFrameElement::attach(const AttachContext& context)
+void HTMLFrameElement::attachLayoutTree(const AttachContext& context)
{
- HTMLFrameElementBase::attach(context);
+ HTMLFrameElementBase::attachLayoutTree(context);
if (HTMLFrameSetElement* frameSetElement = Traversal<HTMLFrameSetElement>::firstAncestor(*this)) {
if (!m_frameBorderSet)

Powered by Google App Engine
This is Rietveld 408576698