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

Side by Side Diff: content/renderer/presentation/presentation_dispatcher.cc

Issue 1214083013: Presentation API: implement .getAvailability() (Chromium side). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/presentation/presentation_dispatcher.h" 5 #include "content/renderer/presentation/presentation_dispatcher.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "content/common/presentation/presentation_service.mojom.h" 11 #include "content/common/presentation/presentation_service.mojom.h"
12 #include "content/public/common/presentation_constants.h" 12 #include "content/public/common/presentation_constants.h"
13 #include "content/public/common/service_registry.h" 13 #include "content/public/common/service_registry.h"
14 #include "content/public/renderer/render_frame.h" 14 #include "content/public/renderer/render_frame.h"
15 #include "content/renderer/presentation/presentation_session_client.h" 15 #include "content/renderer/presentation/presentation_session_client.h"
16 #include "third_party/WebKit/public/platform/WebString.h" 16 #include "third_party/WebKit/public/platform/WebString.h"
17 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nAvailabilityObserver.h"
17 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nController.h" 18 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nController.h"
18 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nError.h" 19 #include "third_party/WebKit/public/platform/modules/presentation/WebPresentatio nError.h"
19 #include "third_party/WebKit/public/web/WebDocument.h" 20 #include "third_party/WebKit/public/web/WebDocument.h"
20 #include "third_party/WebKit/public/web/WebLocalFrame.h" 21 #include "third_party/WebKit/public/web/WebLocalFrame.h"
21 #include "url/gurl.h" 22 #include "url/gurl.h"
22 23
23 namespace { 24 namespace {
24 25
25 blink::WebPresentationError::ErrorType GetWebPresentationErrorTypeFromMojo( 26 blink::WebPresentationError::ErrorType GetWebPresentationErrorTypeFromMojo(
26 presentation::PresentationErrorType mojoErrorType) { 27 presentation::PresentationErrorType mojoErrorType) {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 return session_message; 74 return session_message;
74 } 75 }
75 76
76 } // namespace 77 } // namespace
77 78
78 namespace content { 79 namespace content {
79 80
80 PresentationDispatcher::PresentationDispatcher(RenderFrame* render_frame) 81 PresentationDispatcher::PresentationDispatcher(RenderFrame* render_frame)
81 : RenderFrameObserver(render_frame), 82 : RenderFrameObserver(render_frame),
82 controller_(nullptr), 83 controller_(nullptr),
83 binding_(this) { 84 binding_(this),
85 listening_(ListeningState::Inactive),
86 previous_availability_(false) {
84 } 87 }
85 88
86 PresentationDispatcher::~PresentationDispatcher() { 89 PresentationDispatcher::~PresentationDispatcher() {
87 // Controller should be destroyed before the dispatcher when frame is 90 // Controller should be destroyed before the dispatcher when frame is
88 // destroyed. 91 // destroyed.
89 DCHECK(!controller_); 92 DCHECK(!controller_);
90 } 93 }
91 94
92 void PresentationDispatcher::setController( 95 void PresentationDispatcher::setController(
93 blink::WebPresentationController* controller) { 96 blink::WebPresentationController* controller) {
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 void PresentationDispatcher::closeSession( 286 void PresentationDispatcher::closeSession(
284 const blink::WebString& presentationUrl, 287 const blink::WebString& presentationUrl,
285 const blink::WebString& presentationId) { 288 const blink::WebString& presentationId) {
286 ConnectToPresentationServiceIfNeeded(); 289 ConnectToPresentationServiceIfNeeded();
287 290
288 presentation_service_->CloseSession( 291 presentation_service_->CloseSession(
289 presentationUrl.utf8(), 292 presentationUrl.utf8(),
290 presentationId.utf8()); 293 presentationId.utf8());
291 } 294 }
292 295
296 void PresentationDispatcher::getAvailability(
297 const blink::WebString& presentationUrl,
298 blink::WebPresentationAvailabilityCallbacks* callbacks) {
299 if (listening_ == ListeningState::Active) {
300 callbacks->onSuccess(&previous_availability_);
301 delete callbacks;
302 return;
303 }
304
305 availability_callbacks_.Add(callbacks);
306 UpdateListeningState();
307 }
308
309 void PresentationDispatcher::startListening(
310 blink::WebPresentationAvailabilityObserver* observer) {
311 availability_observers_.insert(observer);
312 UpdateListeningState();
313 }
314
315 void PresentationDispatcher::stopListening(
316 blink::WebPresentationAvailabilityObserver* observer) {
317 availability_observers_.erase(observer);
318 UpdateListeningState();
319 }
320
293 void PresentationDispatcher::DidChangeDefaultPresentation() { 321 void PresentationDispatcher::DidChangeDefaultPresentation() {
294 GURL presentation_url(GetPresentationURLFromFrame(render_frame())); 322 GURL presentation_url(GetPresentationURLFromFrame(render_frame()));
295 323
296 ConnectToPresentationServiceIfNeeded(); 324 ConnectToPresentationServiceIfNeeded();
297 presentation_service_->SetDefaultPresentationURL( 325 presentation_service_->SetDefaultPresentationURL(
298 presentation_url.spec(), mojo::String()); 326 presentation_url.spec(), mojo::String());
299 } 327 }
300 328
301 void PresentationDispatcher::DidCommitProvisionalLoad( 329 void PresentationDispatcher::DidCommitProvisionalLoad(
302 bool is_new_navigation, 330 bool is_new_navigation,
303 bool is_same_page_navigation) { 331 bool is_same_page_navigation) {
304 blink::WebFrame* frame = render_frame()->GetWebFrame(); 332 blink::WebFrame* frame = render_frame()->GetWebFrame();
305 // If not top-level navigation. 333 // If not top-level navigation.
306 if (frame->parent() || is_same_page_navigation) 334 if (frame->parent() || is_same_page_navigation)
307 return; 335 return;
308 336
309 // Remove all pending send message requests. 337 // Remove all pending send message requests.
310 MessageRequestQueue empty; 338 MessageRequestQueue empty;
311 std::swap(message_request_queue_, empty); 339 std::swap(message_request_queue_, empty);
312 } 340 }
313 341
314 void PresentationDispatcher::OnScreenAvailabilityUpdated(bool available) { 342 void PresentationDispatcher::OnScreenAvailabilityUpdated(bool available) {
315 if (controller_) 343 previous_availability_ = available;
whywhat 2015/07/02 22:42:48 nit: check if the last known availability is diffe
mlamouri (slow - plz ping) 2015/07/03 13:35:45 This is being checked before sending the event. Pr
316 controller_->didChangeAvailability(available); 344
345 for (auto observer : availability_observers_)
346 observer->availabilityChanged(available);
347
348 for (AvailabilityCallbacksMap::iterator iter(&availability_callbacks_);
349 !iter.IsAtEnd(); iter.Advance()) {
350 iter.GetCurrentValue()->onSuccess(&available);
351 }
352 availability_callbacks_.Clear();
353
354 UpdateListeningState();
317 } 355 }
318 356
319 void PresentationDispatcher::OnDefaultSessionStarted( 357 void PresentationDispatcher::OnDefaultSessionStarted(
320 presentation::PresentationSessionInfoPtr session_info) { 358 presentation::PresentationSessionInfoPtr session_info) {
321 if (!controller_) 359 if (!controller_)
322 return; 360 return;
323 361
324 // Reset the callback to get the next event. 362 // Reset the callback to get the next event.
325 presentation_service_->ListenForDefaultSessionStart(base::Bind( 363 presentation_service_->ListenForDefaultSessionStart(base::Bind(
326 &PresentationDispatcher::OnDefaultSessionStarted, 364 &PresentationDispatcher::OnDefaultSessionStarted,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 &PresentationDispatcher::OnDefaultSessionStarted, 443 &PresentationDispatcher::OnDefaultSessionStarted,
406 base::Unretained(this))); 444 base::Unretained(this)));
407 445
408 // TODO(imcheng): Uncomment this once it is implemented on the browser 446 // TODO(imcheng): Uncomment this once it is implemented on the browser
409 // side. (crbug.com/459006) 447 // side. (crbug.com/459006)
410 // presentation_service_->ListenForSessionStateChange(base::Bind( 448 // presentation_service_->ListenForSessionStateChange(base::Bind(
411 // &PresentationDispatcher::OnSessionStateChange, 449 // &PresentationDispatcher::OnSessionStateChange,
412 // base::Unretained(this))); 450 // base::Unretained(this)));
413 } 451 }
414 452
453 void PresentationDispatcher::UpdateListeningState() {
454 bool should_listen = !availability_callbacks_.IsEmpty() ||
455 !availability_observers_.empty();
456
whywhat 2015/07/02 22:42:48 maybe something like this would be shorter and eas
mlamouri (slow - plz ping) 2015/07/03 13:35:45 Done.
457 if (!should_listen) {
458 if (listening_ == ListeningState::Inactive)
459 return;
460
461 listening_ = ListeningState::Inactive;
462 ConnectToPresentationServiceIfNeeded();
463 presentation_service_->StopListeningForScreenAvailability();
464 return;
465 }
466
467 // should_listen == true.
468 if (listening_ != ListeningState::Inactive)
469 return;
470
471 listening_ = ListeningState::Waiting;
472 ConnectToPresentationServiceIfNeeded();
473 presentation_service_->ListenForScreenAvailability();
474 }
475
415 } // namespace content 476 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698