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

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

Issue 205823002: Oilpan: Prepare to move AbstractSQLStatementBackend and SQLStatementBackend to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/SQLStatementBackend.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/AbstractSQLStatementBackend.h
diff --git a/Source/modules/webdatabase/AbstractSQLStatementBackend.h b/Source/modules/webdatabase/AbstractSQLStatementBackend.h
index 11a8c531d678a9afb59604888c23fdcc3c3321f7..3df2472e24e91b046c6fd2d494a579ba13a506a0 100644
--- a/Source/modules/webdatabase/AbstractSQLStatementBackend.h
+++ b/Source/modules/webdatabase/AbstractSQLStatementBackend.h
@@ -26,15 +26,17 @@
#ifndef AbstractSQLStatementBackend_h
#define AbstractSQLStatementBackend_h
+#include "heap/Handle.h"
#include "modules/webdatabase/SQLError.h"
#include "modules/webdatabase/SQLResultSet.h"
#include "wtf/ThreadSafeRefCounted.h"
namespace WebCore {
-class AbstractSQLStatementBackend : public ThreadSafeRefCounted<AbstractSQLStatementBackend> {
+class AbstractSQLStatementBackend : public ThreadSafeRefCountedWillBeGarbageCollectedFinalized<AbstractSQLStatementBackend> {
public:
virtual ~AbstractSQLStatementBackend() { }
+ virtual void trace(Visitor*) = 0;
virtual PassRefPtr<SQLError> sqlError() const = 0;
virtual PassRefPtr<SQLResultSet> sqlResultSet() const = 0;
« no previous file with comments | « no previous file | Source/modules/webdatabase/SQLStatementBackend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698