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

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

Issue 2254443002: CL for perf tryjob on win (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/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(); }

Powered by Google App Engine
This is Rietveld 408576698