Index: Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp b/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp |
similarity index 98% |
rename from Source/bindings/v8/custom/V8SQLTransactionCustom.cpp |
rename to Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp |
index 45a764ce042057c9fc5e6250fd24a9c2895b12e6..c40e3f1a028c669f1a6ae32d7b8883bf124f7afd 100644 |
--- a/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp |
+++ b/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp |
@@ -37,8 +37,8 @@ |
#include "bindings/v8/ExceptionState.h" |
#include "bindings/v8/V8Binding.h" |
#include "core/dom/ExceptionCode.h" |
-#include "modules/webdatabase/sqlite/SQLValue.h" |
#include "modules/webdatabase/Database.h" |
+#include "modules/webdatabase/sqlite/SQLValue.h" |
#include "wtf/Vector.h" |
using namespace WTF; |
@@ -78,9 +78,9 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8: |
v8::Handle<v8::Integer> key = v8::Integer::New(info.GetIsolate(), i); |
TONATIVE_VOID(v8::Local<v8::Value>, value, sqlArgsObject->Get(key)); |
- if (value.IsEmpty() || value->IsNull()) |
+ if (value.IsEmpty() || value->IsNull()) { |
sqlValues.append(SQLValue()); |
- else if (value->IsNumber()) { |
+ } else if (value->IsNumber()) { |
TONATIVE_VOID(double, sqlValue, value->NumberValue()); |
sqlValues.append(SQLValue(sqlValue)); |
} else { |