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

Unified Diff: Source/modules/indexeddb/IndexedDBClient.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: new requirements 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/modules/indexeddb/IndexedDBClient.h
diff --git a/Source/modules/indexeddb/IndexedDBClient.h b/Source/modules/indexeddb/IndexedDBClient.h
index c1010e8b666d34febdb95962ff6de4daa0195d2e..0c0ce39809ea23743355c95a21b111730e69ba29 100644
--- a/Source/modules/indexeddb/IndexedDBClient.h
+++ b/Source/modules/indexeddb/IndexedDBClient.h
@@ -38,7 +38,7 @@ class ExecutionContext;
class IndexedDBClient : public GarbageCollected<IndexedDBClient> {
public:
static IndexedDBClient* create();
- void trace(Visitor*) { }
+ virtual void trace(Visitor*) { }
virtual bool allowIndexedDB(ExecutionContext*, const String& name) = 0;
};

Powered by Google App Engine
This is Rietveld 408576698