replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287870
29 lines
651 B
C++
29 lines
651 B
C++
/* 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 STORAGE_BASEVFS_H_
|
|
#define STORAGE_BASEVFS_H_
|
|
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
struct sqlite3_vfs;
|
|
struct sqlite3_file;
|
|
|
|
template <typename T>
|
|
struct already_AddRefed;
|
|
|
|
namespace mozilla::dom::quota {
|
|
class QuotaObject;
|
|
}
|
|
|
|
namespace mozilla::storage::basevfs {
|
|
|
|
const char* GetVFSName(bool exclusive);
|
|
|
|
UniquePtr<sqlite3_vfs> ConstructVFS(bool exclusive);
|
|
|
|
} // namespace mozilla::storage::basevfs
|
|
|
|
#endif // STORAGE_OBFUSCATINGVFS_H_
|