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

Unified Diff: content/common/presentation/presentation_service.mojom

Issue 1208083004: Presentation API: ignore presentation id passed to startSession(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments 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
Index: content/common/presentation/presentation_service.mojom
diff --git a/content/common/presentation/presentation_service.mojom b/content/common/presentation/presentation_service.mojom
index 310e7b4f9fc12b3abfa57ef8090704e531d47d61..fd890e5d29bc6462ae7ca7fafb04cf64107fcffa 100644
--- a/content/common/presentation/presentation_service.mojom
+++ b/content/common/presentation/presentation_service.mojom
@@ -73,13 +73,12 @@ interface PresentationService {
// will return a non-null and valid PresentationSessionInfo if starting the
// session succeeded, or null with a PresentationError if starting the
// session failed.
- // The presentation id is always returned along with the initialized
- // session on success.
- // If the UA identifies a matching session (same presentation url and id),
- // the user may choose this existing session and the page will join it
- // rather than get a new one. An empty presentation id means that the
- // UA will generate the presentation id.
- StartSession(string presentation_url, string? presentation_id)
+ // The presentation id returned in |sessionInfo| on success is generated by
+ // the UA.
+ // If the UA identifies a matching session (same presentation url), the user
+ // may choose this existing session and the page will join it rather than get
+ // a new one.
+ StartSession(string presentation_url)
=> (PresentationSessionInfo? sessionInfo, PresentationError? error);
// Called when joinSession() is called by the frame. The result callback

Powered by Google App Engine
This is Rietveld 408576698