| Index: third_party/WebKit/Source/core/dom/ContainerNode.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ContainerNode.h b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| index 4bdf9f285d06f4d042955ce0a0ac08b9d9d68b3f..0f12da3efcfc6c8c21b8b58a16cba76300b08aa3 100644
|
| --- a/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| +++ b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| @@ -54,13 +54,6 @@ enum DynamicRestyleFlags {
|
| AffectedByLastChildRules = 1 << 11,
|
|
|
| NumberOfDynamicRestyleFlags = 12,
|
| -
|
| - ChildrenAffectedByStructuralRules = ChildrenAffectedByFirstChildRules
|
| - | ChildrenAffectedByLastChildRules
|
| - | ChildrenAffectedByDirectAdjacentRules
|
| - | ChildrenAffectedByIndirectAdjacentRules
|
| - | ChildrenAffectedByForwardPositionalRules
|
| - | ChildrenAffectedByBackwardPositionalRules
|
| };
|
|
|
| enum SubtreeModificationAction {
|
| @@ -166,7 +159,7 @@ public:
|
| // FIXME: These methods should all be renamed to something better than "check",
|
| // since it's not clear that they alter the style bits of siblings and children.
|
| enum SiblingCheckType { FinishedParsingChildren, SiblingElementInserted, SiblingElementRemoved };
|
| - void checkForSiblingStyleChanges(SiblingCheckType, Element* changedElement, Node* nodeBeforeChange, Node* nodeAfterChange);
|
| + void checkForSiblingStyleChanges(SiblingCheckType, Node* changedNode, Node* nodeBeforeChange, Node* nodeAfterChange);
|
| void recalcDescendantStyles(StyleRecalcChange);
|
|
|
| bool childrenSupportStyleSharing() const { return !hasRestyleFlags(); }
|
|
|