summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/SQLTransactionClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/SQLTransactionClient.h')
-rw-r--r--WebCore/storage/SQLTransactionClient.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/WebCore/storage/SQLTransactionClient.h b/WebCore/storage/SQLTransactionClient.h
index 941c163..e822594 100644
--- a/WebCore/storage/SQLTransactionClient.h
+++ b/WebCore/storage/SQLTransactionClient.h
@@ -31,13 +31,15 @@
#ifndef SQLTransactionClient_h
#define SQLTransactionClient_h
+#include <wtf/Noncopyable.h>
+
namespace WebCore {
class SQLTransaction;
// A client to the SQLTransaction class. Allows SQLTransaction to notify interested
// parties that certain things have happened in a transaction.
- class SQLTransactionClient {
+ class SQLTransactionClient : public Noncopyable {
public:
void didCommitTransaction(SQLTransaction*);
void didExecuteStatement(SQLTransaction*);