Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1831)

Unified Diff: Source/modules/presentation/Presentation.cpp

Issue 1225523002: Presentation API: startSession() no longer takes a presentation id. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/presentation/Presentation.h ('k') | Source/modules/presentation/Presentation.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « Source/modules/presentation/Presentation.h ('k') | Source/modules/presentation/Presentation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698