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

Unified Diff: Source/core/css/resolver/MatchRequest.h

Issue 447063003: Tentative: clean up applyAuthorStyles (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 3 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/TreeBoundaryCrossingRules.cpp ('k') | Source/core/css/resolver/ScopedStyleResolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/css/TreeBoundaryCrossingRules.cpp ('k') | Source/core/css/resolver/ScopedStyleResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698