Bug 1655413 [wpt PR 24763] - Make CSP default-src without 'unsafe-eval' block eval...
[gecko.git] / dom / workers / WorkerCSPEventListener.h
blob355090a6becbb365e8d35f36f4c78ec36b377ded
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_WorkerCSPEventListener_h
8 #define mozilla_dom_WorkerCSPEventListener_h
10 #include "mozilla/Mutex.h"
11 #include "nsIContentSecurityPolicy.h"
13 namespace mozilla {
14 namespace dom {
16 class WorkerRef;
17 class WorkerPrivate;
19 class WorkerCSPEventListener final : public nsICSPEventListener {
20 public:
21 NS_DECL_THREADSAFE_ISUPPORTS
22 NS_DECL_NSICSPEVENTLISTENER
24 static already_AddRefed<WorkerCSPEventListener> Create(
25 WorkerPrivate* aWorkerPrivate);
27 private:
28 WorkerCSPEventListener();
29 ~WorkerCSPEventListener() = default;
31 Mutex mMutex;
33 // Protected by mutex.
34 RefPtr<WeakWorkerRef> mWorkerRef;
37 } // namespace dom
38 } // namespace mozilla
40 #endif // mozilla_dom_WorkerCSPEventListener_h