Index: third_party/WebKit/public/platform/modules/presentation/presentation.mojom |
diff --git a/third_party/WebKit/public/platform/modules/presentation/presentation.mojom b/third_party/WebKit/public/platform/modules/presentation/presentation.mojom |
index b41d3f8d0ce418a33bd5fb1c7f8b8a10c89adb58..d5f6dcdc43facd8857fe331432cd22173323606e 100644 |
--- a/third_party/WebKit/public/platform/modules/presentation/presentation.mojom |
+++ b/third_party/WebKit/public/platform/modules/presentation/presentation.mojom |
@@ -68,6 +68,8 @@ interface PresentationService { |
// Sets the PresentationServiceClient. |
SetClient(PresentationServiceClient client); |
+ ///////////// Functions here are for the controller part of the API. ///////// |
+ |
// Called when the frame sets or changes the default presentation URLs. |
// When the default presentation is started on this frame, |
// PresentationServiceClient::OnDefaultSessionStarted will be invoked. |
@@ -102,6 +104,14 @@ interface PresentationService { |
JoinSession(array<url.mojom.Url> presentation_urls, string? presentation_id) |
=> (PresentationSessionInfo? sessionInfo, PresentationError? error); |
+ // Called in StartSession's callback function for offscreen presentation only. |
+ // It passes in controlling frame's PresentationConnection to |
+ // PresentationService. |
+ SetPresentationConnection(PresentationSessionInfo sessionInfo, |
+ PresentationConnection connection); |
+ |
+ ////////////////////////////////////////////////////////////////////////////// |
+ |
// Called when send() is called by the frame. The true in the |
// result callback notifies that the service is ready for next message. |
// The false in the result callback notifies the renderer to stop sending |