Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / webdatabase / SQLTransactionClient.h
index 9799354..b0ff78a 100644 (file)
@@ -36,7 +36,7 @@
 
 namespace blink {
 
-class DatabaseBackendBase;
+class Database;
 
 // A client to the SQLTransaction class. Allows SQLTransaction to notify interested
 // parties that certain things have happened in a transaction.
@@ -44,8 +44,8 @@ class SQLTransactionClient {
     WTF_MAKE_NONCOPYABLE(SQLTransactionClient); WTF_MAKE_FAST_ALLOCATED;
 public:
     SQLTransactionClient() { }
-    void didCommitWriteTransaction(DatabaseBackendBase*);
-    bool didExceedQuota(DatabaseBackendBase*);
+    void didCommitWriteTransaction(Database*);
+    bool didExceedQuota(Database*);
 };
 
 }