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

Side by Side Diff: sky/engine/core/dom/shadow/SelectRuleFeatureSet.h

Issue 696903002: Remove a lot of API surface from Element. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « sky/engine/core/dom/shadow/ElementShadow.cpp ('k') | sky/engine/core/dom/shadow/SelectRuleFeatureSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698