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

Unified Diff: content/browser/navigator_connect/navigator_connect_service_worker_service_factory.h

Issue 1278483004: Revert of Refactor browser side navigator.connect code to not use MessagePortService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@serviceport-serviceside
Patch Set: Created 5 years, 4 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/browser/navigator_connect/navigator_connect_service_worker_service_factory.h
diff --git a/content/browser/navigator_connect/navigator_connect_service_worker_service_factory.h b/content/browser/navigator_connect/navigator_connect_service_worker_service_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..cd935fb7ff50bbb41daa8104051be5c8c0174277
--- /dev/null
+++ b/content/browser/navigator_connect/navigator_connect_service_worker_service_factory.h
@@ -0,0 +1,64 @@
+// 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.
+
+#ifndef CONTENT_BROWSER_NAVIGATOR_CONNECT_NAVIGATOR_CONNECT_SERVICE_WORKER_SERVICE_FACTORY_H_
+#define CONTENT_BROWSER_NAVIGATOR_CONNECT_NAVIGATOR_CONNECT_SERVICE_WORKER_SERVICE_FACTORY_H_
+
+#include <map>
+
+#include "base/memory/weak_ptr.h"
+#include "base/strings/string16.h"
+#include "content/common/service_worker/service_worker_status_code.h"
+#include "content/public/browser/navigator_connect_service_factory.h"
+
+namespace content {
+
+class ServiceWorkerContextWrapper;
+class ServiceWorkerRegistration;
+
+// Service worker specific NavigatorConnectServiceFactory implementation. This
+// class accepts all URLs (and thus has to be the first factory to be added to
+// NavigatorConnectContext or no other factories will ever by used).
+// Tries to find a service worker registration to handle the url being connected
+// to.
+class NavigatorConnectServiceWorkerServiceFactory
+ : public NavigatorConnectServiceFactory {
+ public:
+ explicit NavigatorConnectServiceWorkerServiceFactory(
+ const scoped_refptr<ServiceWorkerContextWrapper>& service_worker_context);
+ ~NavigatorConnectServiceWorkerServiceFactory() override;
+
+ // NavigatorConnectServiceFactory implementation.
+ bool HandlesUrl(const GURL& target_url) override;
+ void Connect(const NavigatorConnectClient& client,
+ const ConnectCallback& callback) override;
+
+ private:
+ // Callback called when the Service Worker context found (or didn't find) a
+ // service worker registration to serve a particular URL.
+ void GotServiceWorkerRegistration(
+ const ConnectCallback& callback,
+ const NavigatorConnectClient& client,
+ ServiceWorkerStatusCode status,
+ const scoped_refptr<ServiceWorkerRegistration>& registration);
+
+ // Callback called when the service worker finished handling the service port
+ // connection event.
+ void OnConnectResult(
+ const ConnectCallback& callback,
+ const NavigatorConnectClient& client,
+ const scoped_refptr<ServiceWorkerRegistration>& registration,
+ ServiceWorkerStatusCode status,
+ bool accept_connection,
+ const base::string16& name,
+ const base::string16& data);
+
+ scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_;
+ base::WeakPtrFactory<NavigatorConnectServiceWorkerServiceFactory>
+ weak_factory_;
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_NAVIGATOR_CONNECT_NAVIGATOR_CONNECT_SERVICE_WORKER_SERVICE_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698