| 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 {
|
|
|