OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 module presentation; | 5 module presentation; |
6 | 6 |
7 struct PresentationSessionInfo { | 7 struct PresentationSessionInfo { |
8 string url; | 8 string url; |
9 string id; | 9 string id; |
10 }; | 10 }; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 (string? presentation_url, bool available); | 45 (string? presentation_url, bool available); |
46 | 46 |
47 // Called when the frame no longer listens to the |availablechange| event. | 47 // Called when the frame no longer listens to the |availablechange| event. |
48 RemoveScreenAvailabilityListener(string? presentation_url); | 48 RemoveScreenAvailabilityListener(string? presentation_url); |
49 | 49 |
50 // Called when the renderer is ready to receive the browser initiated | 50 // Called when the renderer is ready to receive the browser initiated |
51 // session. If the default session is started by the embedder before this | 51 // session. If the default session is started by the embedder before this |
52 // call, the embedder may queue it and run the callback when the call is | 52 // call, the embedder may queue it and run the callback when the call is |
53 // performed. | 53 // performed. |
54 ListenForDefaultSessionStart() | 54 ListenForDefaultSessionStart() |
55 => (PresentationSessionInfo defaultSessionInfo); | 55 => (PresentationSessionInfo? defaultSessionInfo); |
56 | 56 |
57 // Called when startSession() is called by the frame. The result callback | 57 // Called when startSession() is called by the frame. The result callback |
58 // will return a non-null and valid PresentationSessionInfo if starting the | 58 // will return a non-null and valid PresentationSessionInfo if starting the |
59 // session succeeded, or null with a PresentationError if starting the | 59 // session succeeded, or null with a PresentationError if starting the |
60 // session failed. | 60 // session failed. |
61 // The presentation id is always returned along with the initialized | 61 // The presentation id is always returned along with the initialized |
62 // session on success. | 62 // session on success. |
63 // If the UA identifies a matching session (same presentation url and id), | 63 // If the UA identifies a matching session (same presentation url and id), |
64 // the user may choose this existing session and the page will join it | 64 // the user may choose this existing session and the page will join it |
65 // rather than get a new one. An empty presentation id means that the | 65 // rather than get a new one. An empty presentation id means that the |
(...skipping 11 matching lines...) Expand all Loading... |
77 // Called when closeSession() is called by the frame. | 77 // Called when closeSession() is called by the frame. |
78 CloseSession(string presentation_url, string presentation_id); | 78 CloseSession(string presentation_url, string presentation_id); |
79 | 79 |
80 // Called when the frame is ready to process the next state change. Returns | 80 // Called when the frame is ready to process the next state change. Returns |
81 // the last session state if it’s changed since the last time the callback | 81 // the last session state if it’s changed since the last time the callback |
82 // was called. Might cause the event fired with the initial state change. | 82 // was called. Might cause the event fired with the initial state change. |
83 ListenForSessionStateChange() | 83 ListenForSessionStateChange() |
84 => (PresentationSessionInfo sessionInfo, | 84 => (PresentationSessionInfo sessionInfo, |
85 PresentationSessionState newState); | 85 PresentationSessionState newState); |
86 }; | 86 }; |
OLD | NEW |