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"
14 #include "nsCycleCollectionParticipant.h"
15 #include "nsISupports.h"
16 #include "nsWrapperCache.h"
19 class nsIGlobalObject
;
27 class FileSystemManager
;
29 struct StorageEstimate
;
31 class StorageManager final
: public nsISupports
, public nsWrapperCache
{
32 nsCOMPtr
<nsIGlobalObject
> mOwner
;
35 explicit StorageManager(nsIGlobalObject
* aGlobal
);
37 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
38 NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(StorageManager
)
42 already_AddRefed
<FileSystemManager
> GetFileSystemManager();
45 nsIGlobalObject
* GetParentObject() const { return mOwner
; }
47 JSObject
* WrapObject(JSContext
* aCx
,
48 JS::Handle
<JSObject
*> aGivenProto
) override
;
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
);
62 RefPtr
<FileSystemManager
> mFileSystemManager
;
66 } // namespace mozilla
68 #endif // mozilla_dom_StorageManager_h