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

Unified Diff: third_party/WebKit/Source/core/dom/FirstLetterPseudoElement.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/FirstLetterPseudoElement.cpp
diff --git a/third_party/WebKit/Source/core/dom/FirstLetterPseudoElement.cpp b/third_party/WebKit/Source/core/dom/FirstLetterPseudoElement.cpp
index 7d677fbca57f59fd4675f401e6e183ece491d567..e553f93a4b1d682785f594a045d872de2bf72abb 100644
--- a/third_party/WebKit/Source/core/dom/FirstLetterPseudoElement.cpp
+++ b/third_party/WebKit/Source/core/dom/FirstLetterPseudoElement.cpp
@@ -212,9 +212,9 @@ void FirstLetterPseudoElement::setRemainingTextLayoutObject(LayoutTextFragment*
m_remainingTextLayoutObject = fragment;
}
-void FirstLetterPseudoElement::attach(const AttachContext& context)
+void FirstLetterPseudoElement::attachLayoutTree(const AttachContext& context)
{
- PseudoElement::attach(context);
+ PseudoElement::attachLayoutTree(context);
attachFirstLetterTextLayoutObjects();
}

Powered by Google App Engine
This is Rietveld 408576698