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

Unified Diff: third_party/WebKit/Source/core/dom/Node.h

Issue 2439973005: Revert of Move Layout Tree Construction code into Element::rebuildLayoutTree() (Closed)
Patch Set: Revert "Move Layout Tree Construction code into Element::rebuildLayoutTree()" Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Node.h
diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
index cba7774dd3ae35573d1d60883c2c03542a8c8da5..784591c4fe01581c8e28bc8baf8fa06672c9b342 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -209,7 +209,6 @@ class CORE_EXPORT Node : public EventTarget {
Node* firstChild() const;
Node* lastChild() const;
Node* getRootNode(const GetRootNodeOptions&) const;
- Text* nextTextSibling() const;
Node& treeRoot() const;
Node& shadowIncludingRoot() const;
// closed-shadow-hidden is defined at
@@ -429,23 +428,6 @@ class CORE_EXPORT Node : public EventTarget {
void setNeedsStyleRecalc(StyleChangeType, const StyleChangeReasonForTracing&);
void clearNeedsStyleRecalc();
- bool needsReattachLayoutTree() { return getFlag(NeedsReattachLayoutTree); }
- bool childNeedsReattachLayoutTree() {
- return getFlag(ChildNeedsReattachLayoutTree);
- }
-
- void setNeedsReattachLayoutTree();
- void setChildNeedsReattachLayoutTree() {
- setFlag(ChildNeedsReattachLayoutTree);
- }
-
- void clearNeedsReattachLayoutTree() { clearFlag(NeedsReattachLayoutTree); }
- void clearChildNeedsReattachLayoutTree() {
- clearFlag(ChildNeedsReattachLayoutTree);
- }
-
- void markAncestorsWithChildNeedsReattachLayoutTree();
-
bool needsDistributionRecalc() const;
bool childNeedsDistributionRecalc() const {
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698