Index: Source/bindings/modules/v8/V8BindingForModules.cpp |
diff --git a/Source/bindings/modules/v8/V8BindingForModules.cpp b/Source/bindings/modules/v8/V8BindingForModules.cpp |
index f18e70460f20f307c9dfce08fe9e9f7cff7e2ec9..c15eb036eee0acd67dc7d832400970072c63b41d 100644 |
--- a/Source/bindings/modules/v8/V8BindingForModules.cpp |
+++ b/Source/bindings/modules/v8/V8BindingForModules.cpp |
@@ -423,7 +423,7 @@ ScriptValue deserializeScriptValue(ScriptState* scriptState, SerializedScriptVal |
return ScriptValue(scriptState, v8::Null(isolate)); |
} |
-SQLValue NativeValueTraits<SQLValue>::nativeValue(v8::Local<v8::Value> value, v8::Isolate* isolate, ExceptionState& exceptionState) |
+SQLValue NativeValueTraits<SQLValue>::nativeValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& exceptionState) |
{ |
if (value.IsEmpty() || value->IsNull()) |
return SQLValue(); |
@@ -435,12 +435,12 @@ SQLValue NativeValueTraits<SQLValue>::nativeValue(v8::Local<v8::Value> value, v8 |
return SQLValue(stringValue); |
} |
-IDBKey* NativeValueTraits<IDBKey*>::nativeValue(v8::Local<v8::Value> value, v8::Isolate* isolate, ExceptionState& exceptionState) |
+IDBKey* NativeValueTraits<IDBKey*>::nativeValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& exceptionState) |
{ |
return createIDBKeyFromValue(isolate, value); |
} |
-IDBKeyRange* NativeValueTraits<IDBKeyRange*>::nativeValue(v8::Local<v8::Value> value, v8::Isolate* isolate, ExceptionState& exceptionState) |
+IDBKeyRange* NativeValueTraits<IDBKeyRange*>::nativeValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& exceptionState) |
{ |
return V8IDBKeyRange::toImplWithTypeCheck(isolate, value); |
} |