Bug 1908539 restrict MacOS platform audio processing to Nightly r=webrtc-reviewers...
[gecko.git] / dom / quota / Assertions.cpp
blobb8d12189bf8d0934fdbe74be3612db274652e566
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 #include "Assertions.h"
9 #include "mozilla/Assertions.h"
10 #include "mozilla/dom/quota/QuotaManager.h"
11 #include "nsIThread.h"
13 namespace mozilla::dom::quota {
15 bool IsOnIOThread() {
16 QuotaManager* quotaManager = QuotaManager::Get();
17 NS_ASSERTION(quotaManager, "Must have a manager here!");
19 bool currentThread;
20 return NS_SUCCEEDED(
21 quotaManager->IOThread()->IsOnCurrentThread(&currentThread)) &&
22 currentThread;
25 void AssertIsOnIOThread() {
26 NS_ASSERTION(IsOnIOThread(), "Running on the wrong thread!");
29 void DiagnosticAssertIsOnIOThread() { MOZ_DIAGNOSTIC_ASSERT(IsOnIOThread()); }
31 void AssertCurrentThreadOwnsQuotaMutex() {
32 #ifdef DEBUG
33 QuotaManager* quotaManager = QuotaManager::Get();
34 NS_ASSERTION(quotaManager, "Must have a manager here!");
36 quotaManager->AssertCurrentThreadOwnsQuotaMutex();
37 #endif
40 } // namespace mozilla::dom::quota