Bug 1688354 [wpt PR 27298] - Treat 'rem' as an absolute unit for font size, a=testonly
[gecko.git] / dom / quota / StorageManager.h
blob0d06995f3f7a00adaed8f2d1342b4953022e7aec
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 Promise;
28 struct StorageEstimate;
30 class StorageManager final : public nsISupports, public nsWrapperCache {
31 nsCOMPtr<nsIGlobalObject> mOwner;
33 public:
34 explicit StorageManager(nsIGlobalObject* aGlobal);
36 nsIGlobalObject* GetParentObject() const { return mOwner; }
38 // WebIDL
39 already_AddRefed<Promise> Persisted(ErrorResult& aRv);
41 already_AddRefed<Promise> Persist(ErrorResult& aRv);
43 already_AddRefed<Promise> Estimate(ErrorResult& aRv);
45 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
46 NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(StorageManager)
48 // nsWrapperCache
49 virtual JSObject* WrapObject(JSContext* aCx,
50 JS::Handle<JSObject*> aGivenProto) override;
52 private:
53 ~StorageManager();
56 } // namespace dom
57 } // namespace mozilla
59 #endif // mozilla_dom_StorageManager_h