2020-03-17 14:50:58 +03:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
2021-05-31 20:44:19 +03:00
|
|
|
#ifndef DOM_INDEXEDDB_DATABASEFILEINFOFWD_H_
|
|
|
|
#define DOM_INDEXEDDB_DATABASEFILEINFOFWD_H_
|
2020-03-17 14:50:58 +03:00
|
|
|
|
|
|
|
namespace mozilla::dom::indexedDB {
|
|
|
|
|
2021-06-01 06:42:47 +03:00
|
|
|
class DatabaseFileManager;
|
2021-05-31 20:44:19 +03:00
|
|
|
|
2020-03-17 14:50:58 +03:00
|
|
|
template <typename FileManager>
|
2021-06-01 10:04:28 +03:00
|
|
|
class FileInfo;
|
2020-03-17 14:50:58 +03:00
|
|
|
|
2021-06-01 11:50:32 +03:00
|
|
|
using DatabaseFileInfo = FileInfo<DatabaseFileManager>;
|
2020-03-17 14:50:58 +03:00
|
|
|
|
|
|
|
} // namespace mozilla::dom::indexedDB
|
|
|
|
|
2021-05-31 20:44:19 +03:00
|
|
|
#endif // DOM_INDEXEDDB_DATABASEFILEINFOFWD_H_
|