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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/ShadowRoot.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/dom/shadow/ShadowRoot.cpp
diff --git a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
index 3afb29d199955b7c4f528bbe34b0342ac5c502ca..41f0e8b46bb31b4e5d56749bd8ab69b2461edaa6 100644
--- a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
+++ b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
@@ -144,10 +144,10 @@ void ShadowRoot::recalcStyle(StyleRecalcChange change)
clearChildNeedsStyleRecalc();
}
-void ShadowRoot::attach(const AttachContext& context)
+void ShadowRoot::attachLayoutTree(const AttachContext& context)
{
StyleSharingDepthScope sharingScope(*this);
- DocumentFragment::attach(context);
+ DocumentFragment::attachLayoutTree(context);
}
void ShadowRoot::detach(const AttachContext& context)

Powered by Google App Engine
This is Rietveld 408576698