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

Side by Side Diff: content/common/presentation/presentation_service.mojom

Issue 1219273003: Presentation API: allow the Mojo service to reject a getAvailability() call. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@presentation_get_availability_chromium
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/renderer/presentation/presentation_dispatcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 };
OLDNEW
« no previous file with comments | « no previous file | content/renderer/presentation/presentation_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698