OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 InvalidationSet& ensureAttributeInvalidationSet(const AtomicString& attribut
eName, InvalidationType type) { return ensureAttributeInvalidationData(attribute
Name).ensureInvalidationSet(type); } | 132 InvalidationSet& ensureAttributeInvalidationSet(const AtomicString& attribut
eName, InvalidationType type) { return ensureAttributeInvalidationData(attribute
Name).ensureInvalidationSet(type); } |
133 InvalidationSet& ensureIdInvalidationSet(const AtomicString& id, Invalidatio
nType type) { return ensureIdInvalidationData(id).ensureInvalidationSet(type); } | 133 InvalidationSet& ensureIdInvalidationSet(const AtomicString& id, Invalidatio
nType type) { return ensureIdInvalidationData(id).ensureInvalidationSet(type); } |
134 InvalidationSet& ensurePseudoInvalidationSet(CSSSelector::PseudoType pseudoT
ype, InvalidationType type) { return ensurePseudoInvalidationData(pseudoType).en
sureInvalidationSet(type); } | 134 InvalidationSet& ensurePseudoInvalidationSet(CSSSelector::PseudoType pseudoT
ype, InvalidationType type) { return ensurePseudoInvalidationData(pseudoType).en
sureInvalidationSet(type); } |
135 | 135 |
136 void updateInvalidationSets(const RuleData&); | 136 void updateInvalidationSets(const RuleData&); |
137 void updateInvalidationSetsForContentAttribute(const RuleData&); | 137 void updateInvalidationSetsForContentAttribute(const RuleData&); |
138 | 138 |
139 struct InvalidationSetFeatures { | 139 struct InvalidationSetFeatures { |
140 DISALLOW_ALLOCATION(); | 140 DISALLOW_ALLOCATION(); |
141 InvalidationSetFeatures() | 141 InvalidationSetFeatures() |
142 : maxDirectAdjacentSelectors(std::numeric_limits<unsigned>::max()) | 142 : maxDirectAdjacentSelectors(UINT_MAX) |
143 , customPseudoElement(false) | 143 , customPseudoElement(false) |
144 , hasBeforeOrAfter(false) | 144 , hasBeforeOrAfter(false) |
145 , treeBoundaryCrossing(false) | 145 , treeBoundaryCrossing(false) |
146 , adjacent(false) | 146 , adjacent(false) |
147 , insertionPointCrossing(false) | 147 , insertionPointCrossing(false) |
148 , forceSubtree(false) | 148 , forceSubtree(false) |
149 { } | 149 { } |
150 | 150 |
151 Vector<AtomicString> classes; | 151 Vector<AtomicString> classes; |
152 Vector<AtomicString> attributes; | 152 Vector<AtomicString> attributes; |
(...skipping 26 matching lines...) Expand all Loading... |
179 PseudoTypeInvalidationSetMap m_pseudoInvalidationSets; | 179 PseudoTypeInvalidationSetMap m_pseudoInvalidationSets; |
180 | 180 |
181 friend class RuleFeatureSetTest; | 181 friend class RuleFeatureSetTest; |
182 }; | 182 }; |
183 | 183 |
184 } // namespace blink | 184 } // namespace blink |
185 | 185 |
186 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::RuleFeature); | 186 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::RuleFeature); |
187 | 187 |
188 #endif // RuleFeature_h | 188 #endif // RuleFeature_h |
OLD | NEW |