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

Unified Diff: Source/core/css/FontFace.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/FontFace.h
diff --git a/Source/core/css/FontFace.h b/Source/core/css/FontFace.h
index cdd535892360b0540803ed0e8133b5b8ce820d79..cf078f4b00d7dd04fbb4d7052be26ead91dbac21 100644
--- a/Source/core/css/FontFace.h
+++ b/Source/core/css/FontFace.h
@@ -96,7 +96,7 @@ public:
FontTraits traits() const;
CSSFontFace* cssFontFace() { return m_cssFontFace.get(); }
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
bool hadBlankText() const;
@@ -105,7 +105,7 @@ public:
virtual ~LoadFontCallback() { }
virtual void notifyLoaded(FontFace*) = 0;
virtual void notifyError(FontFace*) = 0;
- virtual void trace(Visitor*) { }
+ DEFINE_INLINE_VIRTUAL_TRACE() { }
};
void loadWithCallback(PassRefPtrWillBeRawPtr<LoadFontCallback>, ExecutionContext*);

Powered by Google App Engine
This is Rietveld 408576698