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

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: Created 5 years, 6 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 d033a482cb80d280926902f9261a8e850ebbc8f2..3b528f08ffb917feae24fa26237b115a07b9eaed 100644
--- a/content/common/presentation/presentation_service.mojom
+++ b/content/common/presentation/presentation_service.mojom
@@ -75,11 +75,10 @@ interface PresentationService {
// session failed.
// The presentation id is always returned along with the initialized
whywhat 2015/07/02 19:54:31 Perhaps, you should mention that the presentation
mlamouri (slow - plz ping) 2015/07/08 14:37:09 Done.
// 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)
+ // 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
@@ -95,7 +94,7 @@ interface PresentationService {
// the send requests and invalidate all pending requests. This occurs
// for eg., when frame is deleted or navigated away.
SendSessionMessage(SessionMessage message_request) => (bool success);
-
+
whywhat 2015/07/02 19:54:31 what's this diff?
mlamouri (slow - plz ping) 2015/07/08 14:37:09 Can't find that in my diff locally.
// Called when closeSession() is called by the frame.
CloseSession(string presentation_url, string presentation_id);

Powered by Google App Engine
This is Rietveld 408576698