Index: Source/core/css/ElementRuleCollector.h |
diff --git a/Source/core/css/ElementRuleCollector.h b/Source/core/css/ElementRuleCollector.h |
index 494b77e994bcc24a15a9dd12757fa61347f0c2cb..65a445c482d9ebe6da7ce097bd097a480ac1073a 100644 |
--- a/Source/core/css/ElementRuleCollector.h |
+++ b/Source/core/css/ElementRuleCollector.h |
@@ -34,7 +34,6 @@ namespace WebCore { |
class CSSStyleSheet; |
class CSSRuleList; |
-class RenderRegion; |
class RuleData; |
class RuleSet; |
class ScopedStyleResolver; |
@@ -97,7 +96,6 @@ public: |
void setMode(SelectorChecker::Mode mode) { m_mode = mode; } |
void setPseudoStyleRequest(const PseudoStyleRequest& request) { m_pseudoStyleRequest = request; } |
void setSameOriginOnly(bool f) { m_sameOriginOnly = f; } |
- void setRegionForStyling(const RenderRegion* regionForStyling) { m_regionForStyling = regionForStyling; } |
void setMatchingUARules(bool matchingUARules) { m_matchingUARules = matchingUARules; } |
bool hasAnyMatchingRules(RuleSet*); |
@@ -107,7 +105,6 @@ public: |
PassRefPtr<CSSRuleList> matchedCSSRuleList(); |
void collectMatchingRules(const MatchRequest&, RuleRange&, SelectorChecker::BehaviorAtBoundary = SelectorChecker::DoesNotCrossBoundary, CascadeScope = ignoreCascadeScope, CascadeOrder = ignoreCascadeOrder); |
- void collectMatchingRulesForRegion(const MatchRequest&, RuleRange&, SelectorChecker::BehaviorAtBoundary = SelectorChecker::DoesNotCrossBoundary, CascadeScope = ignoreCascadeScope, CascadeOrder = ignoreCascadeOrder); |
void sortAndTransferMatchedRules(); |
void clearMatchedRules(); |
void addElementStyleProperties(const StylePropertySet*, bool isCacheable = true); |
@@ -138,7 +135,6 @@ private: |
const SelectorFilter& m_selectorFilter; |
RefPtr<RenderStyle> m_style; // FIXME: This can be mutated during matching! |
- const RenderRegion* m_regionForStyling; |
PseudoStyleRequest m_pseudoStyleRequest; |
SelectorChecker::Mode m_mode; |
bool m_canUseFastReject; |