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

Unified Diff: Source/core/css/SelectorFilter.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/SelectorFilter.h
diff --git a/Source/core/css/SelectorFilter.h b/Source/core/css/SelectorFilter.h
index b475bc09eaaf119ca1e3eda8849dbf66947bb681..bbe6565565f6ec13863fef5b9b7bf42c660ae043 100644
--- a/Source/core/css/SelectorFilter.h
+++ b/Source/core/css/SelectorFilter.h
@@ -46,7 +46,7 @@ public:
ParentStackFrame() : element(nullptr) { }
explicit ParentStackFrame(Element& element) : element(&element) { }
- void trace(Visitor*);
+ DECLARE_TRACE();
RawPtrWillBeMember<Element> element;
Vector<unsigned, 4> identifierHashes;
@@ -65,7 +65,7 @@ public:
inline bool fastRejectSelector(const unsigned* identifierHashes) const;
static void collectIdentifierHashes(const CSSSelector&, unsigned* identifierHashes, unsigned maximumIdentifierCount);
- void trace(Visitor*);
+ DECLARE_TRACE();
private:
WillBeHeapVector<ParentStackFrame> m_parentStack;

Powered by Google App Engine
This is Rietveld 408576698