Need to define the transaction interface between the front end and backend.
Created attachment 189191 [details] the patch.
Comment on attachment 189191 [details] the patch. View in context: https://bugs.webkit.org/attachment.cgi?id=189191&action=review > Source/WebCore/Modules/webdatabase/SQLTransaction.h:79 > + virtual void requestTransitToState(SQLTransactionState); > + virtual bool hasCallback() const; > + virtual bool hasSuccessCallback() const; > + virtual bool hasErrorCallback() const; > + virtual void setBackend(AbstractSQLTransactionBackend*); You should add OVERRIDE to these. > Source/WebCore/Modules/webdatabase/SQLTransactionBackend.h:84 > + virtual void requestTransitToState(SQLTransactionState); > + virtual PassRefPtr<SQLError> transactionError(); > + virtual AbstractSQLStatement* currentStatement(); > + virtual void setShouldRetryCurrentStatement(bool); > + virtual void executeSQL(PassOwnPtr<AbstractSQLStatement>, const String& statement, > + const Vector<SQLValue>& arguments, int permissions); And here.
Thanks for there review. Adjusted patch based on feedback. Landed in r143412: <http://trac.webkit.org/changeset/143412>.