Index: content/child/navigator_connect/service_port_dispatcher_impl.cc |
diff --git a/content/child/navigator_connect/service_port_dispatcher_impl.cc b/content/child/navigator_connect/service_port_dispatcher_impl.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..adb298183c089fa7d3b3d8c56d719baf607d10fb |
--- /dev/null |
+++ b/content/child/navigator_connect/service_port_dispatcher_impl.cc |
@@ -0,0 +1,78 @@ |
+// 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/child/navigator_connect/service_port_dispatcher_impl.h" |
+ |
+#include "base/trace_event/trace_event.h" |
+#include "mojo/common/common_type_converters.h" |
+#include "mojo/common/url_type_converters.h" |
+#include "third_party/WebKit/public/web/WebServiceWorkerContextProxy.h" |
+ |
+namespace content { |
+ |
+namespace { |
+ |
+class WebConnectCallbacksImpl |
+ : public blink::WebServicePortConnectEventCallbacks { |
+ public: |
+ WebConnectCallbacksImpl( |
+ const ServicePortDispatcher::ConnectCallback& callback) |
+ : callback_(callback) {} |
+ |
+ ~WebConnectCallbacksImpl() override {} |
+ |
+ void onSuccess(blink::WebServicePort* port) override { |
+ callback_.Run(SERVICE_PORT_CONNECT_RESULT_ACCEPT, |
+ mojo::String::From<base::string16>(port->name), |
+ mojo::String::From<base::string16>(port->data)); |
+ } |
+ |
+ void onError() override { |
+ callback_.Run(SERVICE_PORT_CONNECT_RESULT_REJECT, mojo::String(""), |
+ mojo::String("")); |
+ } |
+ |
+ private: |
+ ServicePortDispatcher::ConnectCallback callback_; |
+}; |
+ |
+} // namespace |
+ |
+void ServicePortDispatcherImpl::Create( |
+ base::WeakPtr<blink::WebServiceWorkerContextProxy> proxy, |
+ mojo::InterfaceRequest<ServicePortDispatcher> request) { |
+ new ServicePortDispatcherImpl(proxy, request.Pass()); |
+} |
+ |
+ServicePortDispatcherImpl::~ServicePortDispatcherImpl() { |
+ WorkerTaskRunner::Instance()->RemoveStopObserver(this); |
+} |
+ |
+ServicePortDispatcherImpl::ServicePortDispatcherImpl( |
+ base::WeakPtr<blink::WebServiceWorkerContextProxy> proxy, |
+ mojo::InterfaceRequest<ServicePortDispatcher> request) |
+ : binding_(this, request.Pass()), proxy_(proxy) { |
+ WorkerTaskRunner::Instance()->AddStopObserver(this); |
+} |
+ |
+void ServicePortDispatcherImpl::OnWorkerRunLoopStopped() { |
+ delete this; |
+} |
+ |
+void ServicePortDispatcherImpl::Connect(const mojo::String& target_url, |
+ const mojo::String& origin, |
+ int32_t port_id, |
+ const ConnectCallback& callback) { |
+ if (!proxy_) { |
+ callback.Run(SERVICE_PORT_CONNECT_RESULT_REJECT, mojo::String(""), |
+ mojo::String("")); |
+ return; |
+ } |
+ TRACE_EVENT0("ServiceWorker", "ServicePortDispatcherImpl::Connect"); |
+ proxy_->dispatchServicePortConnectEvent(new WebConnectCallbacksImpl(callback), |
+ target_url.To<GURL>(), |
+ origin.To<base::string16>(), port_id); |
+} |
+ |
+} // namespace content |