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

Unified Diff: third_party/WebKit/Source/core/css/ElementRuleCollector.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Source/core/css/ElementRuleCollector.h
diff --git a/third_party/WebKit/Source/core/css/ElementRuleCollector.h b/third_party/WebKit/Source/core/css/ElementRuleCollector.h
index dc92aefd08e77f88dd1b6749ae2dae646ed55e09..cafcce96c9258982126ec5fa059bbe8a2d1f2bd0 100644
--- a/third_party/WebKit/Source/core/css/ElementRuleCollector.h
+++ b/third_party/WebKit/Source/core/css/ElementRuleCollector.h
@@ -75,7 +75,7 @@ private:
const RuleData* m_ruleData;
unsigned m_specificity;
uint64_t m_position;
- RawPtrWillBeMember<const CSSStyleSheet> m_parentStyleSheet;
+ Member<const CSSStyleSheet> m_parentStyleSheet;
};
} // namespace blink
@@ -118,8 +118,8 @@ public:
bool hasAnyMatchingRules(RuleSet*);
const MatchResult& matchedResult() const;
- PassRefPtrWillBeRawPtr<StyleRuleList> matchedStyleRuleList();
- PassRefPtrWillBeRawPtr<CSSRuleList> matchedCSSRuleList();
+ RawPtr<StyleRuleList> matchedStyleRuleList();
+ RawPtr<CSSRuleList> matchedCSSRuleList();
void collectMatchingRules(const MatchRequest&, CascadeOrder = ignoreCascadeOrder, bool matchingTreeBoundaryRules = false);
void collectMatchingShadowHostRules(const MatchRequest&, CascadeOrder = ignoreCascadeOrder);
@@ -159,11 +159,11 @@ private:
bool m_matchingUARules;
bool m_includeEmptyRules;
- WillBeHeapVector<MatchedRule, 32> m_matchedRules;
+ HeapVector<MatchedRule, 32> m_matchedRules;
// Output.
- RefPtrWillBeMember<StaticCSSRuleList> m_cssRuleList;
- RefPtrWillBeMember<StyleRuleList> m_styleRuleList;
+ Member<StaticCSSRuleList> m_cssRuleList;
+ Member<StyleRuleList> m_styleRuleList;
MatchResult m_result;
};

Powered by Google App Engine
This is Rietveld 408576698