summaryrefslogtreecommitdiffstats
path: root/dom/workers/ServiceWorkerClient.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/workers/ServiceWorkerClient.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/workers/ServiceWorkerClient.h')
-rw-r--r--dom/workers/ServiceWorkerClient.h118
1 files changed, 118 insertions, 0 deletions
diff --git a/dom/workers/ServiceWorkerClient.h b/dom/workers/ServiceWorkerClient.h
new file mode 100644
index 000000000..36a9cc168
--- /dev/null
+++ b/dom/workers/ServiceWorkerClient.h
@@ -0,0 +1,118 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef mozilla_dom_workers_serviceworkerclient_h
+#define mozilla_dom_workers_serviceworkerclient_h
+
+#include "nsCOMPtr.h"
+#include "nsWrapperCache.h"
+#include "mozilla/ErrorResult.h"
+#include "mozilla/dom/BindingDeclarations.h"
+#include "mozilla/dom/ClientBinding.h"
+
+class nsIDocument;
+
+namespace mozilla {
+namespace dom {
+namespace workers {
+
+class ServiceWorkerClient;
+class ServiceWorkerWindowClient;
+
+// Used as a container object for information needed to create
+// client objects.
+class ServiceWorkerClientInfo final
+{
+ friend class ServiceWorkerClient;
+ friend class ServiceWorkerWindowClient;
+
+public:
+ explicit ServiceWorkerClientInfo(nsIDocument* aDoc);
+
+ const nsString& ClientId() const
+ {
+ return mClientId;
+ }
+
+private:
+ nsString mClientId;
+ uint64_t mWindowId;
+ nsString mUrl;
+
+ // Window Clients
+ VisibilityState mVisibilityState;
+ bool mFocused;
+ FrameType mFrameType;
+};
+
+class ServiceWorkerClient : public nsISupports,
+ public nsWrapperCache
+{
+public:
+ NS_DECL_CYCLE_COLLECTING_ISUPPORTS
+ NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(ServiceWorkerClient)
+
+ ServiceWorkerClient(nsISupports* aOwner,
+ const ServiceWorkerClientInfo& aClientInfo)
+ : mOwner(aOwner)
+ , mId(aClientInfo.mClientId)
+ , mUrl(aClientInfo.mUrl)
+ , mWindowId(aClientInfo.mWindowId)
+ , mFrameType(aClientInfo.mFrameType)
+ {
+ MOZ_ASSERT(aOwner);
+ }
+
+ nsISupports*
+ GetParentObject() const
+ {
+ return mOwner;
+ }
+
+ void GetId(nsString& aRetval) const
+ {
+ aRetval = mId;
+ }
+
+ void
+ GetUrl(nsAString& aUrl) const
+ {
+ aUrl.Assign(mUrl);
+ }
+
+ mozilla::dom::FrameType
+ FrameType() const
+ {
+ return mFrameType;
+ }
+
+ void
+ PostMessage(JSContext* aCx, JS::Handle<JS::Value> aMessage,
+ const Optional<Sequence<JS::Value>>& aTransferable,
+ ErrorResult& aRv);
+
+ JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
+
+protected:
+ virtual ~ServiceWorkerClient()
+ { }
+
+private:
+ nsCOMPtr<nsISupports> mOwner;
+ nsString mId;
+ nsString mUrl;
+
+protected:
+ uint64_t mWindowId;
+ mozilla::dom::FrameType mFrameType;
+};
+
+} // namespace workers
+} // namespace dom
+} // namespace mozilla
+
+#endif // mozilla_dom_workers_serviceworkerclient_h