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

Unified Diff: public/platform/modules/presentation/WebPresentationClient.h

Issue 1222623003: Presentation API: implement .getAvalability() (Blink side). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix 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
« no previous file with comments | « public/platform/modules/presentation/WebPresentationAvailabilityObserver.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/modules/presentation/WebPresentationClient.h
diff --git a/public/platform/modules/presentation/WebPresentationClient.h b/public/platform/modules/presentation/WebPresentationClient.h
index 82d740d2c1aa21e0e0fea211f2e5989fa4564e85..a8a687a655975f2f704b5cb19b62c8fcae6244ad 100644
--- a/public/platform/modules/presentation/WebPresentationClient.h
+++ b/public/platform/modules/presentation/WebPresentationClient.h
@@ -10,6 +10,7 @@
namespace blink {
+class WebPresentationAvailabilityObserver;
class WebPresentationController;
class WebPresentationSessionClient;
class WebString;
@@ -20,6 +21,9 @@ struct WebPresentationError;
// and message.
using WebPresentationSessionClientCallbacks = WebCallbacks<WebPresentationSessionClient, WebPresentationError>;
+// Callback for .getAvailability().
+using WebPresentationAvailabilityCallbacks = WebCallbacks<bool, void>;
+
// The implementation the embedder has to provide for the Presentation API to work.
class WebPresentationClient {
public:
@@ -53,6 +57,26 @@ public:
// Called when the frame requests to close an existing session.
virtual void closeSession(const WebString& url, const WebString& presentationId) = 0;
+
+ // Called when the frame wants to know the availability of a presentation
+ // display.
+ // The ownership of the |callbacks| argument is transferred to the embedder.
+ virtual void getAvailability(const WebString& url, WebPresentationAvailabilityCallbacks* callbacks)
+ {
+ // TODO(mlamouri): remove when implemented in Chromium.
+ bool* result = new bool(false);
+ callbacks->onSuccess(result);
+ delete callbacks;
+ }
+
+ // Start listening to changes in presentation displays availability. The
+ // observer will be notified in case of a change. The observer is
+ // respensible to call stopListening() before being destroyed.
+ virtual void startListening(WebPresentationAvailabilityObserver*) {}
+
+ // Stop listening to changes in presentation displays availability. The
+ // observer will no longer be notified in case of a change.
+ virtual void stopListening(WebPresentationAvailabilityObserver*) {}
};
} // namespace blink
« no previous file with comments | « public/platform/modules/presentation/WebPresentationAvailabilityObserver.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698