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

Unified Diff: Source/core/dom/DOMRectReadOnly.h

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/DOMRectReadOnly.h
diff --git a/Source/core/dom/DOMRectReadOnly.h b/Source/core/dom/DOMRectReadOnly.h
index 83ad6b1f4d9117461b145ca54d3b973dee78bb01..009bba3de661f269828c67af7aace3ba77ee0c22 100644
--- a/Source/core/dom/DOMRectReadOnly.h
+++ b/Source/core/dom/DOMRectReadOnly.h
@@ -25,7 +25,7 @@ public:
double bottom() const { return std::max(m_y, m_y + m_height); }
double left() const { return std::min(m_x, m_x + m_width); }
- void trace(Visitor*) { }
+ DEFINE_INLINE_TRACE() { }
protected:
DOMRectReadOnly(double x, double y, double width, double height);

Powered by Google App Engine
This is Rietveld 408576698