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/. */
6 
7 #ifndef mozilla_dom_WorkerCSPEventListener_h
8 #define mozilla_dom_WorkerCSPEventListener_h
9 
10 #include "mozilla/Mutex.h"
11 #include "nsIContentSecurityPolicy.h"
12 
13 namespace mozilla {
14 namespace dom {
15 
16 class WorkerRef;
17 class WorkerPrivate;
18 
19 class WorkerCSPEventListener final : public nsICSPEventListener {
20  public:
21   NS_DECL_THREADSAFE_ISUPPORTS
22   NS_DECL_NSICSPEVENTLISTENER
23 
24   static already_AddRefed<WorkerCSPEventListener> Create(
25       WorkerPrivate* aWorkerPrivate);
26 
27  private:
28   WorkerCSPEventListener();
29   ~WorkerCSPEventListener() = default;
30 
31   Mutex mMutex;
32 
33   // Protected by mutex.
34   RefPtr<WeakWorkerRef> mWorkerRef;
35 };
36 
37 }  // namespace dom
38 }  // namespace mozilla
39 
40 #endif  // mozilla_dom_WorkerCSPEventListener_h
41