Backed out changeset f594e6f00208 (bug 1940883) for causing crashes in bug 1941164.
[gecko.git] / dom / quota / BackgroundThreadObject.h
blobd9e37b218af81784f5e21c4765328cb7be391597
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 file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef DOM_QUOTA_BACKGROUNDTHREADOBJECT_H_
8 #define DOM_QUOTA_BACKGROUNDTHREADOBJECT_H_
10 #include "nsCOMPtr.h"
12 class nsISerialEventTarget;
14 namespace mozilla::dom::quota {
16 class BackgroundThreadObject {
17 protected:
18 nsCOMPtr<nsISerialEventTarget> mOwningThread;
20 public:
21 void AssertIsOnOwningThread() const
22 #ifdef DEBUG
24 #else
27 #endif
29 nsISerialEventTarget* OwningThread() const;
31 protected:
32 BackgroundThreadObject();
34 explicit BackgroundThreadObject(nsISerialEventTarget* aOwningThread);
37 } // namespace mozilla::dom::quota
39 #endif // DOM_QUOTA_BACKGROUNDTHREADOBJECT_H_