Index: Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
diff --git a/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp b/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
index 5a0ad9a674c4d3542a9937b9e00c678d08d42a77..9b1da2f0d7ec9461c7f9d9284534d0f288aa0c06 100644 |
--- a/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
+++ b/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
@@ -73,7 +73,7 @@ ScriptPromise ServiceWorkerRegistrationNotifications::showNotification(ScriptSta |
// FIXME: Unify the code path here with the Notification.create() function. |
Vector<char> dataAsWireBytes; |
if (options.hasData()) { |
- RefPtr<SerializedScriptValue> data = SerializedScriptValueFactory::instance().create(options.data(), nullptr, exceptionState, options.data().isolate()); |
+ RefPtr<SerializedScriptValue> data = SerializedScriptValueFactory::instance().create(options.data().isolate(), options.data(), nullptr, exceptionState); |
if (exceptionState.hadException()) |
return exceptionState.reject(scriptState); |