Bug 1688354 [wpt PR 27298] - Treat 'rem' as an absolute unit for font size, a=testonly
[gecko.git] / dom / quota / QuotaInfo.h
bloba6693bfb8deb15373fb151b93b22a5bf215a7768
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_quotainfo_h__
8 #define dom_quota_quotainfo_h__
10 #include <utility>
11 #include "nsString.h"
13 namespace mozilla::dom::quota {
15 struct GroupAndOrigin {
16 nsCString mGroup;
17 nsCString mOrigin;
20 struct QuotaInfo : GroupAndOrigin {
21 nsCString mSuffix;
23 QuotaInfo() = default;
24 QuotaInfo(nsCString aSuffix, nsCString aGroup, nsCString aOrigin)
25 : GroupAndOrigin{std::move(aGroup), std::move(aOrigin)},
26 mSuffix{std::move(aSuffix)} {}
29 } // namespace mozilla::dom::quota
31 #endif