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

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

Issue 839773002: Plumbing from WebPresentationClient to the Presentation Mojo service for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
new file mode 100644
index 0000000000000000000000000000000000000000..3832b15703df636d2fdb4dd31a1880dd42e6f474
--- /dev/null
+++ b/content/renderer/presentation/presentation_dispatcher.cc
@@ -0,0 +1,45 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/renderer/presentation/presentation_dispatcher.h"
+
+#include "content/common/presentation/presentation_service.mojom.h"
+#include "content/public/common/service_registry.h"
+#include "content/public/renderer/render_frame.h"
+#include "third_party/WebKit/public/platform/WebPresentationController.h"
+
+namespace content {
+
+PresentationDispatcher::PresentationDispatcher(RenderFrame* render_frame)
+ : RenderFrameObserver(render_frame) {}
+
+PresentationDispatcher::~PresentationDispatcher() {}
+
+void PresentationDispatcher::setController(
+ blink::WebPresentationController* controller) {
+ controller_ = controller;
+}
+
+void PresentationDispatcher::updateAvailableChangeWatched(bool watched) {
+ ConnectToPresentationServiceIfNeeded();
+ presentation_service_->UpdateAvailableChangeWatched(watched);
+}
+
+void PresentationDispatcher::DeviceAvailabilityChanged(bool available) {
+ if (controller_)
+ controller_->didChangeAvailability(available);
+}
+
+void PresentationDispatcher::ConnectToPresentationServiceIfNeeded() {
+ if (presentation_service_.get())
+ return;
+
+ render_frame()->GetServiceRegistry()->ConnectToRemoteService(
+ &presentation_service_);
+ presentation::PresentationServiceClientPtr clientPointer;
+ mojo::BindToProxy(this, &clientPointer);
+ presentation_service_->SetClient(clientPointer.Pass());
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698