Chromium Code Reviews| Index: Source/core/css/RuleFeature.h |
| diff --git a/Source/core/css/RuleFeature.h b/Source/core/css/RuleFeature.h |
| index 200884fb57ee26086c0f502674d265cbb0168cee..5531646e38c06f748a393037cb6ecc918a1b4254 100644 |
| --- a/Source/core/css/RuleFeature.h |
| +++ b/Source/core/css/RuleFeature.h |
| @@ -84,6 +84,11 @@ public: |
| return m_idInvalidationSets.contains(idValue); |
| } |
| + inline bool hasSelectorForPseudoType(CSSSelector::PseudoType pseudo) const |
|
esprehn
2014/09/19 04:55:17
remove inline, this in the class def so it's inlin
rune
2014/09/23 12:23:16
Done.
|
| + { |
| + return m_pseudoInvalidationSets.contains(pseudo); |
| + } |
| + |
| void scheduleStyleInvalidationForClassChange(const SpaceSplitString& changedClasses, Element&); |
| void scheduleStyleInvalidationForClassChange(const SpaceSplitString& oldClasses, const SpaceSplitString& newClasses, Element&); |
| void scheduleStyleInvalidationForAttributeChange(const QualifiedName& attributeName, Element&); |