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

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

Issue 103473002: Manage WebSQL callbacks with OwnPtr instead of refcounting (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix RefPtr/OwnPtr transition gcc errors Created 7 years 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 | « Source/modules/webdatabase/SQLStatement.cpp ('k') | Source/modules/webdatabase/SQLStatementErrorCallback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/SQLStatementCallback.h
diff --git a/Source/modules/webdatabase/SQLStatementCallback.h b/Source/modules/webdatabase/SQLStatementCallback.h
index e8b984e3abc766d318e2b1ffe95a3c1add0ee556..73dbe0c8c6f6cc2ecd9b61b455e8be90161a676b 100644
--- a/Source/modules/webdatabase/SQLStatementCallback.h
+++ b/Source/modules/webdatabase/SQLStatementCallback.h
@@ -28,14 +28,12 @@
#ifndef SQLStatementCallback_h
#define SQLStatementCallback_h
-#include "wtf/ThreadSafeRefCounted.h"
-
namespace WebCore {
class SQLTransaction;
class SQLResultSet;
-class SQLStatementCallback : public ThreadSafeRefCounted<SQLStatementCallback> {
+class SQLStatementCallback {
public:
virtual ~SQLStatementCallback() { }
virtual bool handleEvent(SQLTransaction*, SQLResultSet*) = 0;
« no previous file with comments | « Source/modules/webdatabase/SQLStatement.cpp ('k') | Source/modules/webdatabase/SQLStatementErrorCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698