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

Unified Diff: Source/core/html/canvas/Path2D.h

Issue 463543002: Oilpan: Ensure that classes with virtual trace methods always have vtables for their left-most base… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/html/canvas/Path2D.h
diff --git a/Source/core/html/canvas/Path2D.h b/Source/core/html/canvas/Path2D.h
index 49b2bec163f2b70bb72c08a953f9d12412063c80..96b1f5a986c8758a5b076ff4efb9121f2c309b89 100644
--- a/Source/core/html/canvas/Path2D.h
+++ b/Source/core/html/canvas/Path2D.h
@@ -62,7 +62,7 @@ public:
}
virtual ~Path2D() { }
- void trace(Visitor*) { }
+ virtual void trace(Visitor*) { }
private:
Path2D() : CanvasPathMethods()

Powered by Google App Engine
This is Rietveld 408576698