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

Unified Diff: Source/core/css/RuleSet.h

Issue 953693002: InlinedVisitor: Migrate css to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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: Source/core/css/RuleSet.h
diff --git a/Source/core/css/RuleSet.h b/Source/core/css/RuleSet.h
index d47cbe4be3ee10694fd454cc33f29511a6bd5b1c..517f5446485af74d7e06d074dd2909049b096dac 100644
--- a/Source/core/css/RuleSet.h
+++ b/Source/core/css/RuleSet.h
@@ -61,7 +61,7 @@ public:
{
}
- void trace(Visitor*);
+ DECLARE_TRACE();
RawPtrWillBeMember<StyleRule> m_rule;
unsigned m_selectorIndex;
@@ -90,7 +90,7 @@ public:
static const unsigned maximumIdentifierCount = 4;
const unsigned* descendantSelectorIdentifierHashes() const { return m_descendantSelectorIdentifierHashes; }
- void trace(Visitor*);
+ DECLARE_TRACE();
private:
RawPtrWillBeMember<StyleRule> m_rule;
@@ -159,7 +159,7 @@ public:
void show();
#endif
- void trace(Visitor*);
+ DECLARE_TRACE();
private:
typedef WillBeHeapHashMap<AtomicString, OwnPtrWillBeMember<WillBeHeapLinkedStack<RuleData> > > PendingRuleMap;
@@ -191,7 +191,7 @@ private:
PendingRuleMap tagRules;
PendingRuleMap shadowPseudoElementRules;
- void trace(Visitor*);
+ DECLARE_TRACE();
private:
PendingRuleMaps() { }

Powered by Google App Engine
This is Rietveld 408576698