| Index: sky/engine/core/css/resolver/MatchRequest.h
|
| diff --git a/sky/engine/core/css/resolver/MatchRequest.h b/sky/engine/core/css/resolver/MatchRequest.h
|
| index d940170f7fc132dbe0b2929480b0e6c5e8b3bea1..05c2a4fb6d79bd94cc0b25385040a56b4bcb7509 100644
|
| --- a/sky/engine/core/css/resolver/MatchRequest.h
|
| +++ b/sky/engine/core/css/resolver/MatchRequest.h
|
| @@ -33,9 +33,8 @@ class ContainerNode;
|
| class MatchRequest {
|
| STACK_ALLOCATED();
|
| public:
|
| - MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, unsigned styleSheetIndex = 0)
|
| + MatchRequest(RuleSet* ruleSet, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, unsigned styleSheetIndex = 0)
|
| : ruleSet(ruleSet)
|
| - , includeEmptyRules(includeEmptyRules)
|
| , scope(scope)
|
| , styleSheet(cssSheet)
|
| , styleSheetIndex(styleSheetIndex)
|
| @@ -46,7 +45,6 @@ public:
|
| }
|
|
|
| RawPtr<const RuleSet> ruleSet;
|
| - const bool includeEmptyRules;
|
| RawPtr<const ContainerNode> scope;
|
| RawPtr<const CSSStyleSheet> styleSheet;
|
| const unsigned styleSheetIndex;
|
|
|