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

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

Issue 828373005: Remove includeEmptyRules. (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/ElementRuleCollector.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 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;
« no previous file with comments | « sky/engine/core/css/ElementRuleCollector.cpp ('k') | sky/engine/core/css/resolver/ScopedStyleResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698