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

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: 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
« no previous file with comments | « no previous file | content/renderer/presentation/presentation_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/presentation/presentation_service.mojom
diff --git a/content/common/presentation/presentation_service.mojom b/content/common/presentation/presentation_service.mojom
index d033a482cb80d280926902f9261a8e850ebbc8f2..1bdf39b498e1c0bc587e46d60d7561f5a534f65a 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);
@@ -114,5 +114,15 @@ interface PresentationService {
};
interface PresentationServiceClient {
+ // 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
+ // 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
whywhat 2015/07/06 18:27:18 nit: "Called immediately when the client starts li
+ // 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);
};
« 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