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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
88 // silently and without user action. | 88 // silently and without user action. |
89 JoinSession(string presentation_url, string? presentation_id) | 89 JoinSession(string presentation_url, string? presentation_id) |
90 => (PresentationSessionInfo? sessionInfo, PresentationError? error); | 90 => (PresentationSessionInfo? sessionInfo, PresentationError? error); |
91 | 91 |
92 // Called when send() is called by the frame. The true in the | 92 // Called when send() is called by the frame. The true in the |
93 // result callback notifies that the service is ready for next message. | 93 // result callback notifies that the service is ready for next message. |
94 // The false in the result callback notifies the renderer to stop sending | 94 // The false in the result callback notifies the renderer to stop sending |
95 // the send requests and invalidate all pending requests. This occurs | 95 // the send requests and invalidate all pending requests. This occurs |
96 // for eg., when frame is deleted or navigated away. | 96 // for eg., when frame is deleted or navigated away. |
97 SendSessionMessage(SessionMessage message_request) => (bool success); | 97 SendSessionMessage(SessionMessage message_request) => (bool success); |
98 | 98 |
99 // Called when closeSession() is called by the frame. | 99 // Called when closeSession() is called by the frame. |
100 CloseSession(string presentation_url, string presentation_id); | 100 CloseSession(string presentation_url, string presentation_id); |
101 | 101 |
102 // Called when the frame is ready to process the next state change. Returns | 102 // Called when the frame is ready to process the next state change. Returns |
103 // the last session state if it’s changed since the last time the callback | 103 // the last session state if it’s changed since the last time the callback |
104 // was called. Might cause the event fired with the initial state change. | 104 // was called. Might cause the event fired with the initial state change. |
105 ListenForSessionStateChange() | 105 ListenForSessionStateChange() |
106 => (PresentationSessionInfo sessionInfo, | 106 => (PresentationSessionInfo sessionInfo, |
107 PresentationSessionState newState); | 107 PresentationSessionState newState); |
108 | 108 |
109 // Called when the frame is ready to process the next batch of messages. | 109 // Called when the frame is ready to process the next batch of messages. |
110 // When the callback carries null messages, there is an error | 110 // When the callback carries null messages, there is an error |
111 // at the presentation service side. | 111 // at the presentation service side. |
112 ListenForSessionMessages() | 112 ListenForSessionMessages() |
113 => (array<SessionMessage>? messages); | 113 => (array<SessionMessage>? messages); |
114 }; | 114 }; |
115 | 115 |
116 interface PresentationServiceClient { | 116 interface PresentationServiceClient { |
117 // Called when the client tries to listen for screen availability changes but | |
whywhat
2015/07/06 18:27:18
nit: Rephrase as
"Called when the client starts l
| |
118 // it is not supported by the device or underlying platform. This can also be | |
119 // called if the device is currently in a mode where it can't do screen | |
120 // discoveries (eg. low battery). | |
121 OnScreenAvailabilityNotSupported(); | |
122 | |
123 // Called when the client is listening for screen availability and the state | |
whywhat
2015/07/06 18:27:18
nit: "Called immediately when the client starts li
| |
124 // changes. When the client starts to listen for screen availability, this | |
125 // method will always be called to give the current known state. It will then | |
126 // be called to notify of state updates. | |
117 OnScreenAvailabilityUpdated(bool available); | 127 OnScreenAvailabilityUpdated(bool available); |
118 }; | 128 }; |
OLD | NEW |