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

Unified Diff: Source/modules/webdatabase/SQLTransactionErrorCallback.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
Index: Source/modules/webdatabase/SQLTransactionErrorCallback.h
diff --git a/Source/modules/webdatabase/SQLTransactionErrorCallback.h b/Source/modules/webdatabase/SQLTransactionErrorCallback.h
index 54dc90be7d8603f950b1388802a88571664c85ec..ad69ecf6e97eb2d823c49a3b6569866c5ac9d5d6 100644
--- a/Source/modules/webdatabase/SQLTransactionErrorCallback.h
+++ b/Source/modules/webdatabase/SQLTransactionErrorCallback.h
@@ -29,13 +29,11 @@
#ifndef SQLTransactionErrorCallback_h
#define SQLTransactionErrorCallback_h
-#include "wtf/ThreadSafeRefCounted.h"
-
namespace WebCore {
class SQLError;
-class SQLTransactionErrorCallback : public ThreadSafeRefCounted<SQLTransactionErrorCallback> {
+class SQLTransactionErrorCallback {
public:
virtual ~SQLTransactionErrorCallback() { }
virtual bool handleEvent(SQLError*) = 0;
« no previous file with comments | « Source/modules/webdatabase/SQLTransactionCallback.h ('k') | Source/modules/webdatabase/SQLTransactionSync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698