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

Unified Diff: third_party/WebKit/Source/core/dom/PseudoElement.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/PseudoElement.cpp
diff --git a/third_party/WebKit/Source/core/dom/PseudoElement.cpp b/third_party/WebKit/Source/core/dom/PseudoElement.cpp
index 424e89ef1ae320566eedb4c4c705890a6fa2b75a..a8fbed8f8782e14537e43adf5d74f6409c0be929 100644
--- a/third_party/WebKit/Source/core/dom/PseudoElement.cpp
+++ b/third_party/WebKit/Source/core/dom/PseudoElement.cpp
@@ -115,11 +115,11 @@ void PseudoElement::dispose()
removedFrom(parent);
}
-void PseudoElement::attach(const AttachContext& context)
+void PseudoElement::attachLayoutTree(const AttachContext& context)
{
DCHECK(!layoutObject());
- Element::attach(context);
+ Element::attachLayoutTree(context);
LayoutObject* layoutObject = this->layoutObject();
if (!layoutObject)

Powered by Google App Engine
This is Rietveld 408576698