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

Unified Diff: Source/core/html/HTMLFrameSetElement.cpp

Issue 24430002: Rename attach and detach to createRenderTree/destroyRenderTree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/html/HTMLFrameSetElement.cpp
diff --git a/Source/core/html/HTMLFrameSetElement.cpp b/Source/core/html/HTMLFrameSetElement.cpp
index 1a348a3a49a8d6608b55c5ebbe4eb8721872fc80..6c8c9a14d1077459bd6c61726bcf66b13470e844 100644
--- a/Source/core/html/HTMLFrameSetElement.cpp
+++ b/Source/core/html/HTMLFrameSetElement.cpp
@@ -161,7 +161,7 @@ RenderObject* HTMLFrameSetElement::createRenderer(RenderStyle *style)
return new RenderFrameSet(this);
}
-void HTMLFrameSetElement::attach(const AttachContext& context)
+void HTMLFrameSetElement::createRenderTree(const AttachContext& context)
{
// Inherit default settings from parent frameset
// FIXME: This is not dynamic.
@@ -182,7 +182,7 @@ void HTMLFrameSetElement::attach(const AttachContext& context)
}
}
- HTMLElement::attach(context);
+ HTMLElement::createRenderTree(context);
}
void HTMLFrameSetElement::defaultEventHandler(Event* evt)

Powered by Google App Engine
This is Rietveld 408576698