| Index: Source/modules/webdatabase/SQLTransaction.h
|
| diff --git a/Source/modules/webdatabase/SQLTransaction.h b/Source/modules/webdatabase/SQLTransaction.h
|
| index c104b60c5743824b4d40dbdf29834bf7152e8189..1da7814e78b2e8290eac0bb00280ac23191295ad 100644
|
| --- a/Source/modules/webdatabase/SQLTransaction.h
|
| +++ b/Source/modules/webdatabase/SQLTransaction.h
|
| @@ -45,6 +45,7 @@ class SQLTransactionBackend;
|
| class SQLTransactionCallback;
|
| class SQLTransactionErrorCallback;
|
| class SQLValue;
|
| +class ScriptValue;
|
| class VoidCallback;
|
|
|
| class SQLTransaction final
|
| @@ -60,8 +61,9 @@ public:
|
|
|
| void performPendingCallback();
|
|
|
| - void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
|
| + void executeSql(const String& sqlStatement, const Vector<ScriptValue>& arguments,
|
| SQLStatementCallback*, SQLStatementErrorCallback*, ExceptionState&);
|
| + void executeSql(const String& sqlStatement, ExceptionState&);
|
|
|
| Database* database() { return m_database.get(); }
|
|
|
|
|