BackgroundThreadObject.h (931B)
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/. */ 6 7 #ifndef DOM_QUOTA_BACKGROUNDTHREADOBJECT_H_ 8 #define DOM_QUOTA_BACKGROUNDTHREADOBJECT_H_ 9 10 #include "nsCOMPtr.h" 11 12 class nsISerialEventTarget; 13 14 namespace mozilla::dom::quota { 15 16 class BackgroundThreadObject { 17 protected: 18 nsCOMPtr<nsISerialEventTarget> mOwningThread; 19 20 public: 21 void AssertIsOnOwningThread() const 22 #ifdef DEBUG 23 ; 24 #else 25 { 26 } 27 #endif 28 29 nsISerialEventTarget* OwningThread() const; 30 31 protected: 32 BackgroundThreadObject(); 33 34 explicit BackgroundThreadObject(nsISerialEventTarget* aOwningThread); 35 }; 36 37 } // namespace mozilla::dom::quota 38 39 #endif // DOM_QUOTA_BACKGROUNDTHREADOBJECT_H_