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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/ElementShadow.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/ElementShadow.cpp
diff --git a/third_party/WebKit/Source/core/dom/shadow/ElementShadow.cpp b/third_party/WebKit/Source/core/dom/shadow/ElementShadow.cpp
index 1d312a87b970b9f592687f10fc5e2e1e0b0ddd1f..83461d3c872b7d433387fbff2b4350dee1d7f569 100644
--- a/third_party/WebKit/Source/core/dom/shadow/ElementShadow.cpp
+++ b/third_party/WebKit/Source/core/dom/shadow/ElementShadow.cpp
@@ -204,7 +204,7 @@ void ElementShadow::attach(const Node::AttachContext& context)
for (ShadowRoot* root = &youngestShadowRoot(); root; root = root->olderShadowRoot()) {
if (root->needsAttach())
- root->attach(childrenContext);
+ root->attachLayoutTree(childrenContext);
}
}

Powered by Google App Engine
This is Rietveld 408576698