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

Unified Diff: Source/modules/webdatabase/AbstractSQLStatement.h

Issue 311273005: Oilpan: Prepare to move AbstractSQLStatement, SQLStatement, and SQLCallbackWrapper<T> to Oilpan hea… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | Source/modules/webdatabase/AbstractSQLTransactionBackend.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/AbstractSQLStatement.h
diff --git a/Source/modules/webdatabase/AbstractSQLStatement.h b/Source/modules/webdatabase/AbstractSQLStatement.h
index 1fb99128c3550253de17b6104fcabd3e5cf154a2..9ddcda699881da61c15ce02f15e961762b8750c0 100644
--- a/Source/modules/webdatabase/AbstractSQLStatement.h
+++ b/Source/modules/webdatabase/AbstractSQLStatement.h
@@ -26,15 +26,16 @@
#ifndef AbstractSQLStatement_h
#define AbstractSQLStatement_h
-#include "wtf/ThreadSafeRefCounted.h"
+#include "platform/heap/Handle.h"
namespace WebCore {
class AbstractSQLStatementBackend;
-class AbstractSQLStatement {
+class AbstractSQLStatement : public NoBaseWillBeGarbageCollectedFinalized<AbstractSQLStatement> {
public:
virtual ~AbstractSQLStatement() { }
+ virtual void trace(Visitor*) { }
virtual void setBackend(AbstractSQLStatementBackend*) = 0;
« no previous file with comments | « no previous file | Source/modules/webdatabase/AbstractSQLTransactionBackend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698