From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- dom/cache/Types.h | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 dom/cache/Types.h (limited to 'dom/cache/Types.h') diff --git a/dom/cache/Types.h b/dom/cache/Types.h new file mode 100644 index 0000000000..b033f0cea4 --- /dev/null +++ b/dom/cache/Types.h @@ -0,0 +1,59 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_dom_cache_Types_h +#define mozilla_dom_cache_Types_h + +#include +#include +#include "mozilla/dom/quota/CommonMetadata.h" +#include "nsCOMPtr.h" +#include "nsIFile.h" +#include "nsIInputStream.h" +#include "nsString.h" + +namespace mozilla::dom::cache { + +enum Namespace { + DEFAULT_NAMESPACE, + CHROME_ONLY_NAMESPACE, + NUMBER_OF_NAMESPACES +}; +static const Namespace INVALID_NAMESPACE = NUMBER_OF_NAMESPACES; + +using CacheId = int64_t; +static const CacheId INVALID_CACHE_ID = -1; + +struct CacheDirectoryMetadata : quota::ClientMetadata { + nsCOMPtr mDir; + int64_t mDirectoryLockId = -1; + + explicit CacheDirectoryMetadata(quota::PrincipalMetadata aPrincipalMetadata) + : quota::ClientMetadata( + quota::OriginMetadata{std::move(aPrincipalMetadata), + quota::PERSISTENCE_TYPE_DEFAULT}, + quota::Client::Type::DOMCACHE) {} + + explicit CacheDirectoryMetadata(quota::OriginMetadata aOriginMetadata) + : quota::ClientMetadata(std::move(aOriginMetadata), + quota::Client::Type::DOMCACHE) { + MOZ_DIAGNOSTIC_ASSERT(aOriginMetadata.mPersistenceType == + quota::PERSISTENCE_TYPE_DEFAULT); + } +}; + +struct DeletionInfo { + nsTArray mDeletedBodyIdList; + int64_t mDeletedPaddingSize = 0; +}; + +using InputStreamResolver = std::function&&)>; + +enum class OpenMode : uint8_t { Eager, Lazy, NumTypes }; + +} // namespace mozilla::dom::cache + +#endif // mozilla_dom_cache_Types_h -- cgit v1.2.3