Index: Source/modules/presentation/Presentation.cpp |
diff --git a/Source/modules/presentation/Presentation.cpp b/Source/modules/presentation/Presentation.cpp |
index 0daecf49acbf7e6e2c06281ee43b57d1580336cc..84c37cdf2af15880d40fb4b12f145c9441b3ed69 100644 |
--- a/Source/modules/presentation/Presentation.cpp |
+++ b/Source/modules/presentation/Presentation.cpp |
@@ -84,7 +84,7 @@ PresentationSession* Presentation::session() const |
return m_session.get(); |
} |
-ScriptPromise Presentation::startSession(ScriptState* state, const String& presentationUrl, const String& presentationId) |
+ScriptPromise Presentation::startSession(ScriptState* state, const String& presentationUrl) |
{ |
RefPtrWillBeRawPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(state); |
ScriptPromise promise = resolver->promise(); |
@@ -94,7 +94,7 @@ ScriptPromise Presentation::startSession(ScriptState* state, const String& prese |
resolver->reject(DOMException::create(InvalidStateError, "The object is no longer attached to the frame.")); |
return promise; |
} |
- client->startSession(presentationUrl, presentationId, new PresentationSessionClientCallbacks(resolver, this)); |
+ client->startSession(presentationUrl, new PresentationSessionClientCallbacks(resolver, this)); |
return promise; |
} |