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

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

Issue 1220813009: Presentation API: cleanup leftovers from .getAvailability() changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@presentation-getavailability
Patch Set: rebase 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: public/platform/modules/presentation/WebPresentationClient.h
diff --git a/public/platform/modules/presentation/WebPresentationClient.h b/public/platform/modules/presentation/WebPresentationClient.h
index a8a687a655975f2f704b5cb19b62c8fcae6244ad..1ac6ba32778442a569aeaeb3434889eda780a311 100644
--- a/public/platform/modules/presentation/WebPresentationClient.h
+++ b/public/platform/modules/presentation/WebPresentationClient.h
@@ -32,10 +32,6 @@ public:
// Passes the Blink-side delegate to the embedder.
virtual void setController(WebPresentationController*) = 0;
- // Called when the frame attaches the first event listener to or removes the
- // last event listener from the |availablechange| event.
- virtual void updateAvailableChangeWatched(bool watched) = 0;
-
// Called when the frame requests to start a new session.
// The ownership of the |callbacks| argument is transferred to the embedder.
virtual void startSession(const WebString& presentationUrl, const WebString& presentationId, WebPresentationSessionClientCallbacks*) = 0;
@@ -61,22 +57,16 @@ public:
// 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;
- }
+ virtual void getAvailability(const WebString& url, WebPresentationAvailabilityCallbacks*) = 0;
// 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*) {}
+ virtual void startListening(WebPresentationAvailabilityObserver*) = 0;
// Stop listening to changes in presentation displays availability. The
// observer will no longer be notified in case of a change.
- virtual void stopListening(WebPresentationAvailabilityObserver*) {}
+ virtual void stopListening(WebPresentationAvailabilityObserver*) = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698