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

Unified Diff: Source/core/css/PropertySetCSSStyleDeclaration.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/PropertySetCSSStyleDeclaration.h
diff --git a/Source/core/css/PropertySetCSSStyleDeclaration.h b/Source/core/css/PropertySetCSSStyleDeclaration.h
index 7807f9694b7cfd5c4209468a5098669904429cf7..ecd5d20b75763d430101240e34e4703ce713b55d 100644
--- a/Source/core/css/PropertySetCSSStyleDeclaration.h
+++ b/Source/core/css/PropertySetCSSStyleDeclaration.h
@@ -45,7 +45,7 @@ public:
virtual Element* parentElement() const { return 0; }
StyleSheetContents* contextStyleSheet() const;
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
private:
virtual CSSRule* parentRule() const override { return 0; }
@@ -82,7 +82,7 @@ public:
virtual void deref() override;
#endif
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
protected:
virtual MutableStylePropertySet& propertySet() const override final { ASSERT(m_propertySet); return *m_propertySet; }
@@ -107,7 +107,7 @@ public:
void reattach(MutableStylePropertySet&);
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
protected:
StyleRuleCSSStyleDeclaration(MutableStylePropertySet&, CSSRule*);
@@ -134,7 +134,7 @@ public:
{
}
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
private:
virtual MutableStylePropertySet& propertySet() const override;

Powered by Google App Engine
This is Rietveld 408576698