| Index: Source/core/css/resolver/MatchRequest.h
|
| diff --git a/Source/core/css/resolver/MatchRequest.h b/Source/core/css/resolver/MatchRequest.h
|
| index 66e41b73d0e061c752f0ca2cae209b58d54f43bd..6eb179159bd7a56d57f1a05c96ab5a7b150d9997 100644
|
| --- a/Source/core/css/resolver/MatchRequest.h
|
| +++ b/Source/core/css/resolver/MatchRequest.h
|
| @@ -33,12 +33,11 @@ class ContainerNode;
|
| class MatchRequest {
|
| STACK_ALLOCATED();
|
| public:
|
| - MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, bool elementApplyAuthorStyles = true, unsigned styleSheetIndex = 0)
|
| + MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, unsigned styleSheetIndex = 0)
|
| : ruleSet(ruleSet)
|
| , includeEmptyRules(includeEmptyRules)
|
| , scope(scope)
|
| , styleSheet(cssSheet)
|
| - , elementApplyAuthorStyles(elementApplyAuthorStyles)
|
| , styleSheetIndex(styleSheetIndex)
|
| {
|
| // Now that we're about to read from the RuleSet, we're done adding more
|
| @@ -50,7 +49,6 @@ public:
|
| const bool includeEmptyRules;
|
| RawPtrWillBeMember<const ContainerNode> scope;
|
| RawPtrWillBeMember<const CSSStyleSheet> styleSheet;
|
| - const bool elementApplyAuthorStyles;
|
| const unsigned styleSheetIndex;
|
| };
|
|
|
|
|