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

Unified Diff: Source/core/page/DOMSelection.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/page/DOMSelection.h
diff --git a/Source/core/page/DOMSelection.h b/Source/core/page/DOMSelection.h
index f0514e17e2d98df37353a9cc8f08003f82062c92..262ad190e57e3a3b11968b8ff87db4805168f418 100644
--- a/Source/core/page/DOMSelection.h
+++ b/Source/core/page/DOMSelection.h
@@ -98,7 +98,7 @@ public:
// Microsoft Selection Object API
void empty();
- void trace(Visitor* visitor) { visitor->trace(m_treeScope); }
+ virtual void trace(Visitor* visitor) { visitor->trace(m_treeScope); }
private:
explicit DOMSelection(const TreeScope*);

Powered by Google App Engine
This is Rietveld 408576698