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

Unified Diff: sky/engine/core/css/resolver/MatchRequest.h

Issue 833443003: Remove applyAuthorStyles flag. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 | « sky/engine/core/css/SelectorChecker.cpp ('k') | sky/engine/core/css/resolver/ScopedStyleResolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 637cb8750cdfaecf377c51bbe7281fa38bd6aea5..d940170f7fc132dbe0b2929480b0e6c5e8b3bea1 100644
--- a/sky/engine/core/css/resolver/MatchRequest.h
+++ b/sky/engine/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;
RawPtr<const ContainerNode> scope;
RawPtr<const CSSStyleSheet> styleSheet;
- const bool elementApplyAuthorStyles;
const unsigned styleSheetIndex;
};
« no previous file with comments | « sky/engine/core/css/SelectorChecker.cpp ('k') | sky/engine/core/css/resolver/ScopedStyleResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698