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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameSetElement.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/HTMLFrameSetElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
index 6dd0b9a1b6693fa3a30f0de0e6f702e785d959c3..152f200ab60893c3cb628c09d5d83fd30b38c707 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
@@ -163,7 +163,7 @@ LayoutObject* HTMLFrameSetElement::createLayoutObject(const ComputedStyle& style
return new LayoutFrameSet(this);
}
-void HTMLFrameSetElement::attach(const AttachContext& context)
+void HTMLFrameSetElement::attachLayoutTree(const AttachContext& context)
{
// Inherit default settings from parent frameset
// FIXME: This is not dynamic.
@@ -180,7 +180,7 @@ void HTMLFrameSetElement::attach(const AttachContext& context)
m_noresize = frameset->noResize();
}
- HTMLElement::attach(context);
+ HTMLElement::attachLayoutTree(context);
}
void HTMLFrameSetElement::defaultEventHandler(Event* evt)

Powered by Google App Engine
This is Rietveld 408576698