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

Unified 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: update unit tests 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 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 e5ddafee1531fe0094be7cf717400e09e7799bb5..310e7b4f9fc12b3abfa57ef8090704e531d47d61 100644
--- a/content/common/presentation/presentation_service.mojom
+++ b/content/common/presentation/presentation_service.mojom
@@ -95,7 +95,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);
-
+
// Called when closeSession() is called by the frame.
CloseSession(string presentation_url, string presentation_id);
@@ -112,7 +112,16 @@ interface PresentationService {
};
interface PresentationServiceClient {
- // See PresentationSerivce::ListenForScreenAvailability.
+ // Called when the client tries to listen for screen availability changes but
+ // it is not supported by the device or underlying platform. This can also be
+ // called if the device is currently in a mode where it can't do screen
+ // discoveries (eg. low battery).
+ OnScreenAvailabilityNotSupported();
+
+ // Called when the client is listening for screen availability and the state
+ // changes. When the client starts to listen for screen availability, this
+ // method will always be called to give the current known state. It will then
+ // be called to notify of state updates.
OnScreenAvailabilityUpdated(bool available);
// See PresentationService::ListenForSessionStateChange.

Powered by Google App Engine
This is Rietveld 408576698