Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / quota / GroupInfoPair.cpp
blob1d77fc73c4a7899af95a96235a1b8bd7e1e0d816
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 "GroupInfoPair.h"
9 namespace mozilla::dom::quota {
11 RefPtr<GroupInfo>& GroupInfoPair::GetGroupInfoForPersistenceType(
12 PersistenceType aPersistenceType) {
13 switch (aPersistenceType) {
14 case PERSISTENCE_TYPE_TEMPORARY:
15 return mTemporaryStorageGroupInfo;
16 case PERSISTENCE_TYPE_DEFAULT:
17 return mDefaultStorageGroupInfo;
18 case PERSISTENCE_TYPE_PRIVATE:
19 return mPrivateStorageGroupInfo;
21 case PERSISTENCE_TYPE_PERSISTENT:
22 case PERSISTENCE_TYPE_INVALID:
23 default:
24 MOZ_CRASH("Bad persistence type value!");
28 } // namespace mozilla::dom::quota