| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 SelectRuleFeatureSet(); | 44 SelectRuleFeatureSet(); |
| 45 | 45 |
| 46 void add(const SelectRuleFeatureSet&); | 46 void add(const SelectRuleFeatureSet&); |
| 47 void clear(); | 47 void clear(); |
| 48 void collectFeaturesFromSelector(const CSSSelector&); | 48 void collectFeaturesFromSelector(const CSSSelector&); |
| 49 | 49 |
| 50 bool hasSelectorForId(const AtomicString&) const; | 50 bool hasSelectorForId(const AtomicString&) const; |
| 51 bool hasSelectorForClass(const AtomicString&) const; | 51 bool hasSelectorForClass(const AtomicString&) const; |
| 52 bool hasSelectorForAttribute(const AtomicString&) const; | 52 bool hasSelectorForAttribute(const AtomicString&) const; |
| 53 | 53 |
| 54 bool hasSelectorForChecked() const { return hasSelectorFor(AffectedSelectorC
hecked); } | |
| 55 bool hasSelectorForEnabled() const { return hasSelectorFor(AffectedSelectorE
nabled); } | |
| 56 bool hasSelectorForDisabled() const { return hasSelectorFor(AffectedSelector
Disabled); } | |
| 57 bool hasSelectorForIndeterminate() const { return hasSelectorFor(AffectedSel
ectorIndeterminate); } | |
| 58 bool hasSelectorForLink() const { return hasSelectorFor(AffectedSelectorLink
); } | |
| 59 bool hasSelectorForVisited() const { return hasSelectorFor(AffectedSelectorV
isited); } | |
| 60 | |
| 61 bool hasSelectorFor(AffectedSelectorMask features) const { return m_featureF
lags & features; } | |
| 62 | |
| 63 bool checkSelectorsForClassChange(const SpaceSplitString& changedClasses) co
nst; | 54 bool checkSelectorsForClassChange(const SpaceSplitString& changedClasses) co
nst; |
| 64 bool checkSelectorsForClassChange(const SpaceSplitString& oldClasses, const
SpaceSplitString& newClasses) const; | 55 bool checkSelectorsForClassChange(const SpaceSplitString& oldClasses, const
SpaceSplitString& newClasses) const; |
| 65 | 56 |
| 66 void trace(Visitor* visitor) { visitor->trace(m_cssRuleFeatureSet); } | 57 void trace(Visitor* visitor) { visitor->trace(m_cssRuleFeatureSet); } |
| 67 | 58 |
| 68 private: | 59 private: |
| 69 void setSelectRuleFeature(AffectedSelectorType feature) { m_featureFlags |=
feature; } | |
| 70 | |
| 71 RuleFeatureSet m_cssRuleFeatureSet; | 60 RuleFeatureSet m_cssRuleFeatureSet; |
| 72 int m_featureFlags; | |
| 73 }; | 61 }; |
| 74 | 62 |
| 75 inline bool SelectRuleFeatureSet::hasSelectorForId(const AtomicString& idValue)
const | 63 inline bool SelectRuleFeatureSet::hasSelectorForId(const AtomicString& idValue)
const |
| 76 { | 64 { |
| 77 ASSERT(!idValue.isEmpty()); | 65 ASSERT(!idValue.isEmpty()); |
| 78 return m_cssRuleFeatureSet.hasSelectorForId(idValue); | 66 return m_cssRuleFeatureSet.hasSelectorForId(idValue); |
| 79 } | 67 } |
| 80 | 68 |
| 81 inline bool SelectRuleFeatureSet::hasSelectorForClass(const AtomicString& classV
alue) const | 69 inline bool SelectRuleFeatureSet::hasSelectorForClass(const AtomicString& classV
alue) const |
| 82 { | 70 { |
| 83 ASSERT(!classValue.isEmpty()); | 71 ASSERT(!classValue.isEmpty()); |
| 84 return m_cssRuleFeatureSet.hasSelectorForClass(classValue); | 72 return m_cssRuleFeatureSet.hasSelectorForClass(classValue); |
| 85 } | 73 } |
| 86 | 74 |
| 87 inline bool SelectRuleFeatureSet::hasSelectorForAttribute(const AtomicString& at
tributeName) const | 75 inline bool SelectRuleFeatureSet::hasSelectorForAttribute(const AtomicString& at
tributeName) const |
| 88 { | 76 { |
| 89 ASSERT(!attributeName.isEmpty()); | 77 ASSERT(!attributeName.isEmpty()); |
| 90 return m_cssRuleFeatureSet.hasSelectorForAttribute(attributeName); | 78 return m_cssRuleFeatureSet.hasSelectorForAttribute(attributeName); |
| 91 } | 79 } |
| 92 | 80 |
| 93 } | 81 } |
| 94 | 82 |
| 95 #endif | 83 #endif |
| OLD | NEW |