Bug 1842509 - Remove media.webvtt.regions.enabled pref r=alwu,webidl,smaug,peterv
[gecko.git] / dom / quota / StorageManager.h
blob8622c1eb5d63b579450ee5b7fa4243ff373bcc92
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
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_StorageManager_h
8 #define mozilla_dom_StorageManager_h
10 #include "js/TypeDecls.h"
11 #include "mozilla/AlreadyAddRefed.h"
12 #include "mozilla/Assertions.h"
13 #include "nsCOMPtr.h"
14 #include "nsCycleCollectionParticipant.h"
15 #include "nsISupports.h"
16 #include "nsWrapperCache.h"
18 class JSObject;
19 class nsIGlobalObject;
20 struct JSContext;
22 namespace mozilla {
23 class ErrorResult;
25 namespace dom {
27 class FileSystemManager;
28 class Promise;
29 struct StorageEstimate;
31 class StorageManager final : public nsISupports, public nsWrapperCache {
32 nsCOMPtr<nsIGlobalObject> mOwner;
34 public:
35 explicit StorageManager(nsIGlobalObject* aGlobal);
37 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
38 NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(StorageManager)
40 void Shutdown();
42 already_AddRefed<FileSystemManager> GetFileSystemManager();
44 // WebIDL Boilerplate
45 nsIGlobalObject* GetParentObject() const { return mOwner; }
47 JSObject* WrapObject(JSContext* aCx,
48 JS::Handle<JSObject*> aGivenProto) override;
50 // WebIDL Interface
51 already_AddRefed<Promise> Persisted(ErrorResult& aRv);
53 already_AddRefed<Promise> Persist(ErrorResult& aRv);
55 already_AddRefed<Promise> Estimate(ErrorResult& aRv);
57 already_AddRefed<Promise> GetDirectory(ErrorResult& aRv);
59 private:
60 ~StorageManager();
62 RefPtr<FileSystemManager> mFileSystemManager;
65 } // namespace dom
66 } // namespace mozilla
68 #endif // mozilla_dom_StorageManager_h