Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / quota / QuotaRequestBase.cpp
blob092072b8eeb26ae53a8876334d36f0ba4b7ba2d3
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 "QuotaRequestBase.h"
9 #include "mozilla/dom/quota/PQuotaUsageRequest.h"
10 #include "mozilla/dom/quota/QuotaManager.h"
12 namespace mozilla::dom::quota {
14 void QuotaRequestBase::SendResults() {
15 AssertIsOnOwningThread();
17 if (IsActorDestroyed()) {
18 if (NS_SUCCEEDED(mResultCode)) {
19 mResultCode = NS_ERROR_FAILURE;
21 } else {
22 RequestResponse response;
24 if (NS_SUCCEEDED(mResultCode)) {
25 GetResponse(response);
26 } else {
27 response = mResultCode;
30 Unused << PQuotaRequestParent::Send__delete__(this, response);
34 void QuotaRequestBase::ActorDestroy(ActorDestroyReason aWhy) {
35 AssertIsOnOwningThread();
37 NoteActorDestroyed();
40 } // namespace mozilla::dom::quota