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

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

Issue 1221093004: Presentation API: remove stall PresentationDispatcher::startSession(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@presentation_startsession_noid
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
« no previous file with comments | « content/renderer/presentation/presentation_dispatcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/presentation/presentation_dispatcher.cc
diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc
index 4ed789a02e6609672d7414700cc37ec71f045618..8627d4c2cc1941428161f8fe571ffd4b5027e7cb 100644
--- a/content/renderer/presentation/presentation_dispatcher.cc
+++ b/content/renderer/presentation/presentation_dispatcher.cc
@@ -113,13 +113,6 @@ void PresentationDispatcher::updateAvailableChangeWatched(bool watched) {
void PresentationDispatcher::startSession(
const blink::WebString& presentationUrl,
- const blink::WebString& presentationId,
- blink::WebPresentationSessionClientCallbacks* callback) {
- startSession(presentationUrl, callback);
-}
-
-void PresentationDispatcher::startSession(
- const blink::WebString& presentationUrl,
blink::WebPresentationSessionClientCallbacks* callback) {
DCHECK(callback);
ConnectToPresentationServiceIfNeeded();
@@ -359,6 +352,9 @@ void PresentationDispatcher::OnScreenAvailabilityUpdated(bool available) {
for (auto observer : availability_observers_)
observer->availabilityChanged(available);
+ for (auto observer : availability_observers_)
+ observer->availabilityChanged(available);
+
for (AvailabilityCallbacksMap::iterator iter(&availability_callbacks_);
!iter.IsAtEnd(); iter.Advance()) {
iter.GetCurrentValue()->onSuccess(new bool(available));
« no previous file with comments | « content/renderer/presentation/presentation_dispatcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698