| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 checkSelectorsForClassChange(const SpaceSplitString& changedClasses) co
nst; | 54 bool checkSelectorsForClassChange(const SpaceSplitString& changedClasses) co
nst; |
| 55 bool checkSelectorsForClassChange(const SpaceSplitString& oldClasses, const
SpaceSplitString& newClasses) const; | 55 bool checkSelectorsForClassChange(const SpaceSplitString& oldClasses, const
SpaceSplitString& newClasses) const; |
| 56 | 56 |
| 57 void trace(Visitor* visitor) { visitor->trace(m_cssRuleFeatureSet); } | |
| 58 | |
| 59 private: | 57 private: |
| 60 RuleFeatureSet m_cssRuleFeatureSet; | 58 RuleFeatureSet m_cssRuleFeatureSet; |
| 61 }; | 59 }; |
| 62 | 60 |
| 63 inline bool SelectRuleFeatureSet::hasSelectorForId(const AtomicString& idValue)
const | 61 inline bool SelectRuleFeatureSet::hasSelectorForId(const AtomicString& idValue)
const |
| 64 { | 62 { |
| 65 ASSERT(!idValue.isEmpty()); | 63 ASSERT(!idValue.isEmpty()); |
| 66 return m_cssRuleFeatureSet.hasSelectorForId(idValue); | 64 return m_cssRuleFeatureSet.hasSelectorForId(idValue); |
| 67 } | 65 } |
| 68 | 66 |
| 69 inline bool SelectRuleFeatureSet::hasSelectorForClass(const AtomicString& classV
alue) const | 67 inline bool SelectRuleFeatureSet::hasSelectorForClass(const AtomicString& classV
alue) const |
| 70 { | 68 { |
| 71 ASSERT(!classValue.isEmpty()); | 69 ASSERT(!classValue.isEmpty()); |
| 72 return m_cssRuleFeatureSet.hasSelectorForClass(classValue); | 70 return m_cssRuleFeatureSet.hasSelectorForClass(classValue); |
| 73 } | 71 } |
| 74 | 72 |
| 75 inline bool SelectRuleFeatureSet::hasSelectorForAttribute(const AtomicString& at
tributeName) const | 73 inline bool SelectRuleFeatureSet::hasSelectorForAttribute(const AtomicString& at
tributeName) const |
| 76 { | 74 { |
| 77 ASSERT(!attributeName.isEmpty()); | 75 ASSERT(!attributeName.isEmpty()); |
| 78 return m_cssRuleFeatureSet.hasSelectorForAttribute(attributeName); | 76 return m_cssRuleFeatureSet.hasSelectorForAttribute(attributeName); |
| 79 } | 77 } |
| 80 | 78 |
| 81 } | 79 } |
| 82 | 80 |
| 83 #endif | 81 #endif |
| OLD | NEW |