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

Unified Diff: content/renderer/presentation/presentation_dispatcher.cc

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
Index: content/renderer/presentation/presentation_dispatcher.cc
diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc
index c1cf36ea8cd2df4ca77c15dc42a9bf21aa086ca4..6c68708facb2d4b85d98e37d647ac582eec2f465 100644
--- a/content/renderer/presentation/presentation_dispatcher.cc
+++ b/content/renderer/presentation/presentation_dispatcher.cc
@@ -355,6 +355,23 @@ void PresentationDispatcher::OnScreenAvailabilityUpdated(bool available) {
UpdateListeningState();
}
+void PresentationDispatcher::OnScreenAvailabilityNotSupported() {
+ DCHECK(listening_state_ == ListeningState::Waiting);
+
+ for (AvailabilityCallbacksMap::iterator iter(&availability_callbacks_);
+ !iter.IsAtEnd(); iter.Advance()) {
+ iter.GetCurrentValue()->onError(new blink::WebPresentationError(
+ blink::WebPresentationError::ErrorTypeAvailabilityNotSupported,
+ blink::WebString::fromUTF8(
+ "getAvailability() isn't supported at the moment. It can be due to"
+ "a permanent or temporary system limitation. It is recommended to"
+ "try to blindly start a session in that case.")));
+ }
+ availability_callbacks_.Clear();
+
+ UpdateListeningState();
+}
+
void PresentationDispatcher::OnDefaultSessionStarted(
presentation::PresentationSessionInfoPtr session_info) {
if (!controller_)

Powered by Google App Engine
This is Rietveld 408576698