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 MOZSTORAGESTATEMENTJSHELPER_H
8 #define MOZSTORAGESTATEMENTJSHELPER_H
10 #include "nsIXPCScriptable.h"
17 class StatementParams
;
20 class StatementJSHelper
: public nsIXPCScriptable
{
23 NS_DECL_NSIXPCSCRIPTABLE
26 nsresult
getRow(Statement
*, JSContext
*, JSObject
*, JS::Value
*);
27 nsresult
getParams(Statement
*, JSContext
*, JSObject
*, JS::Value
*);
31 * Wrappers used to clean up the references JS helpers hold to the statement.
32 * For cycle-avoidance reasons they do not hold reference-counted references,
33 * so it is important we do this.
36 class StatementParamsHolder final
: public nsISupports
{
40 explicit StatementParamsHolder(StatementParams
* aParams
) : mParams(aParams
) {}
42 StatementParams
* Get() const {
48 virtual ~StatementParamsHolder();
50 RefPtr
<StatementParams
> mParams
;
53 class StatementRowHolder final
: public nsISupports
{
57 explicit StatementRowHolder(StatementRow
* aRow
) : mRow(aRow
) {}
59 StatementRow
* Get() const {
65 virtual ~StatementRowHolder();
67 RefPtr
<StatementRow
> mRow
;
70 } // namespace storage
71 } // namespace mozilla
73 #endif // MOZSTORAGESTATEMENTJSHELPER_H