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

Unified Diff: Source/core/dom/PresentationAttributeStyle.cpp

Issue 947393002: InlinedVisitor: Migrate dom 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/dom/PresentationAttributeStyle.cpp
diff --git a/Source/core/dom/PresentationAttributeStyle.cpp b/Source/core/dom/PresentationAttributeStyle.cpp
index 2818ee031dcad8a9e1038d03a274b9f7b577d543..972438494ee81010b45ac609b58a554556c12a9c 100644
--- a/Source/core/dom/PresentationAttributeStyle.cpp
+++ b/Source/core/dom/PresentationAttributeStyle.cpp
@@ -60,7 +60,7 @@ static bool operator!=(const PresentationAttributeCacheKey& a, const Presentatio
struct PresentationAttributeCacheEntry final : public NoBaseWillBeGarbageCollectedFinalized<PresentationAttributeCacheEntry> {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
- void trace(Visitor* visitor) { visitor->trace(value); }
+ DEFINE_INLINE_TRACE() { visitor->trace(value); }
PresentationAttributeCacheKey key;
RefPtrWillBeMember<StylePropertySet> value;

Powered by Google App Engine
This is Rietveld 408576698