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

Unified Diff: Source/modules/presentation/PresentationController.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
Index: Source/modules/presentation/PresentationController.h
diff --git a/Source/modules/presentation/PresentationController.h b/Source/modules/presentation/PresentationController.h
index 3b1ea1f74da7deefaba029a0500fc3c56a1f2261..39e4fd12dbfd4ea2c018e51c881224f26cfbf240 100644
--- a/Source/modules/presentation/PresentationController.h
+++ b/Source/modules/presentation/PresentationController.h
@@ -16,6 +16,7 @@
namespace blink {
class LocalFrame;
+class WebPresentationAvailabilityCallback;
class WebPresentationSessionClient;
enum class WebPresentationSessionState;
@@ -38,6 +39,8 @@ public:
static void provideTo(LocalFrame&, WebPresentationClient*);
+ WebPresentationClient* client();
+
// Implementation of HeapSupplement.
DECLARE_VIRTUAL_TRACE();
@@ -48,10 +51,6 @@ public:
virtual void didChangeSessionState(WebPresentationSessionClient*, WebPresentationSessionState) override;
virtual void didReceiveSessionTextMessage(WebPresentationSessionClient*, const WebString&) override;
- // Called when the first listener was added to or the last listener was removed from the
- // |availablechange| event.
- void updateAvailableChangeWatched(bool watched);
-
// Called when the frame wants to start a new presentation.
void startSession(const String& presentationUrl, const String& presentationId, WebPresentationSessionClientCallbacks*);
@@ -70,6 +69,9 @@ public:
// Called when the frame wants to close an existing presentation.
void closeSession(const String& url, const String& presentationId);
+ // Called when the frame wants to know the availability of a device to present.
+ void getAvailability(const String& presentationUrl, WebPresentationAvailabilityCallbacks*);
+
// Connects the |Presentation| object with this controller.
void setPresentation(Presentation*);

Powered by Google App Engine
This is Rietveld 408576698