Index: Source/modules/webdatabase/SQLTransaction.h |
diff --git a/Source/modules/webdatabase/SQLTransaction.h b/Source/modules/webdatabase/SQLTransaction.h |
index c104b60c5743824b4d40dbdf29834bf7152e8189..671d9a96a6b7ac93e627e1eb87069141ea2a36e0 100644 |
--- a/Source/modules/webdatabase/SQLTransaction.h |
+++ b/Source/modules/webdatabase/SQLTransaction.h |
@@ -29,7 +29,9 @@ |
#ifndef SQLTransaction_h |
#define SQLTransaction_h |
+#include "bindings/core/v8/Nullable.h" |
#include "bindings/core/v8/ScriptWrappable.h" |
+#include "bindings/modules/v8/V8BindingForModules.h" |
#include "modules/webdatabase/SQLStatement.h" |
#include "modules/webdatabase/SQLTransactionStateMachine.h" |
#include "platform/heap/Handle.h" |
@@ -45,6 +47,7 @@ class SQLTransactionBackend; |
class SQLTransactionCallback; |
class SQLTransactionErrorCallback; |
class SQLValue; |
+class ScriptValue; |
class VoidCallback; |
class SQLTransaction final |
@@ -60,8 +63,9 @@ public: |
void performPendingCallback(); |
- void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, |
+ void executeSql(ScriptState*, const String& sqlStatement, const Nullable<Vector<ScriptValue>>& arguments, |
SQLStatementCallback*, SQLStatementErrorCallback*, ExceptionState&); |
+ void executeSql(ScriptState*, const String& sqlStatement, ExceptionState&); |
Database* database() { return m_database.get(); } |