Bug 1527719 [wpt PR 15359] - KV storage: make backingStore return the same frozen...
[gecko.git] / storage / mozStorageAsyncStatementJSHelper.h
blob6e2b9b4871f2c150f5e527ab3302991db0d83b50
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
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_storage_mozStorageAsyncStatementJSHelper_h_
8 #define mozilla_storage_mozStorageAsyncStatementJSHelper_h_
10 #include "nsIXPCScriptable.h"
11 #include "nsIXPConnect.h"
13 namespace mozilla {
14 namespace storage {
16 class AsyncStatement;
17 class AsyncStatementParams;
19 /**
20 * A modified version of StatementJSHelper that only exposes the async-specific
21 * 'params' helper. We do not expose 'row' or 'step' as they do not apply to
22 * us.
24 class AsyncStatementJSHelper : public nsIXPCScriptable {
25 public:
26 NS_DECL_ISUPPORTS
27 NS_DECL_NSIXPCSCRIPTABLE
29 private:
30 nsresult getParams(AsyncStatement *, JSContext *, JSObject *, JS::Value *);
33 /**
34 * Wrapper used to clean up the references JS helpers hold to the statement.
35 * For cycle-avoidance reasons they do not hold reference-counted references,
36 * so it is important we do this.
38 class AsyncStatementParamsHolder final : public nsISupports {
39 public:
40 NS_DECL_ISUPPORTS
42 explicit AsyncStatementParamsHolder(AsyncStatementParams *aParams)
43 : mParams(aParams) {}
45 AsyncStatementParams *Get() const {
46 MOZ_ASSERT(mParams);
47 return mParams;
50 private:
51 virtual ~AsyncStatementParamsHolder();
53 RefPtr<AsyncStatementParams> mParams;
56 } // namespace storage
57 } // namespace mozilla
59 #endif // mozilla_storage_mozStorageAsyncStatementJSHelper_h_