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

Unified Diff: third_party/WebKit/Source/core/svg/SVGElement.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/svg/SVGElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGElement.cpp
index 3fb5098a62785d758dacb9bca141bb46ccb93f31..bec7075d8987a2f135bb6a1ef7863044a2eb0c48 100644
--- a/third_party/WebKit/Source/core/svg/SVGElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGElement.cpp
@@ -83,9 +83,9 @@ void SVGElement::detach(const AttachContext& context)
element->removeInstanceMapping(this);
}
-void SVGElement::attach(const AttachContext& context)
+void SVGElement::attachLayoutTree(const AttachContext& context)
{
- Element::attach(context);
+ Element::attachLayoutTree(context);
if (SVGElement* element = correspondingElement())
element->mapInstanceToElement(this);
}

Powered by Google App Engine
This is Rietveld 408576698