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..95631cef08e6952d388742d14c9348acaeae38ad 100644 |
--- a/Source/core/css/resolver/MatchRequest.h |
+++ b/Source/core/css/resolver/MatchRequest.h |
@@ -33,13 +33,13 @@ 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, bool isInShadowTree = false) |
: ruleSet(ruleSet) |
- , includeEmptyRules(includeEmptyRules) |
, scope(scope) |
, styleSheet(cssSheet) |
- , elementApplyAuthorStyles(elementApplyAuthorStyles) |
, styleSheetIndex(styleSheetIndex) |
+ , includeEmptyRules(includeEmptyRules) |
+ , isInShadowTree(isInShadowTree) |
{ |
// Now that we're about to read from the RuleSet, we're done adding more |
// rules to the set and we should make sure it's compacted. |
@@ -47,11 +47,11 @@ public: |
} |
RawPtrWillBeMember<const RuleSet> ruleSet; |
- const bool includeEmptyRules; |
RawPtrWillBeMember<const ContainerNode> scope; |
RawPtrWillBeMember<const CSSStyleSheet> styleSheet; |
- const bool elementApplyAuthorStyles; |
const unsigned styleSheetIndex; |
+ const bool includeEmptyRules; |
+ const bool isInShadowTree; |
}; |
} // namespace blink |