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

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

Issue 412373003: Implement DOMQuad of geometry interfaces. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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/DOMPointReadOnly.h
diff --git a/Source/core/dom/DOMPointReadOnly.h b/Source/core/dom/DOMPointReadOnly.h
index 0d8bbe4aa174729ff3952c064730fd2d4de18a9e..2afd17773e1268f854a67995d9370e8539fa1943 100644
--- a/Source/core/dom/DOMPointReadOnly.h
+++ b/Source/core/dom/DOMPointReadOnly.h
@@ -18,7 +18,7 @@ public:
double z() const { return m_z; }
double w() const { return m_w; }
- void trace(Visitor*) { }
+ virtual void trace(Visitor*) { }
protected:
DOMPointReadOnly(double x, double y, double z, double w);

Powered by Google App Engine
This is Rietveld 408576698