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

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

Issue 103473002: Manage WebSQL callbacks with OwnPtr instead of refcounting (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/modules/webdatabase/SQLTransactionCallback.h
diff --git a/Source/modules/webdatabase/SQLTransactionCallback.h b/Source/modules/webdatabase/SQLTransactionCallback.h
index c1cdb4ba0902e7e799a526fbd7a8c7efd1cf042b..d2cd866ca44d1769e3b7601cc93a7f8c5340233a 100644
--- a/Source/modules/webdatabase/SQLTransactionCallback.h
+++ b/Source/modules/webdatabase/SQLTransactionCallback.h
@@ -29,13 +29,11 @@
#ifndef SQLTransactionCallback_h
#define SQLTransactionCallback_h
-#include "wtf/ThreadSafeRefCounted.h"
-
namespace WebCore {
class SQLTransaction;
-class SQLTransactionCallback : public ThreadSafeRefCounted<SQLTransactionCallback> {
+class SQLTransactionCallback {
public:
virtual ~SQLTransactionCallback() { }
virtual bool handleEvent(SQLTransaction*) = 0;

Powered by Google App Engine
This is Rietveld 408576698