mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8c296bbcd4
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
140 lines
3.3 KiB
C++
140 lines
3.3 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbrequest_h__
|
|
#define mozilla_dom_indexeddb_idbrequest_h__
|
|
|
|
#include "mozilla/dom/indexedDB/IndexedDatabase.h"
|
|
|
|
#include "nsIIDBRequest.h"
|
|
#include "nsIIDBOpenDBRequest.h"
|
|
#include "nsDOMEventTargetHelper.h"
|
|
#include "mozilla/dom/indexedDB/IDBWrapperCache.h"
|
|
|
|
class nsIScriptContext;
|
|
class nsPIDOMWindow;
|
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
class HelperBase;
|
|
class IDBTransaction;
|
|
class IndexedDBRequestParentBase;
|
|
|
|
class IDBRequest : public IDBWrapperCache,
|
|
public nsIIDBRequest
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSIIDBREQUEST
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(IDBRequest,
|
|
IDBWrapperCache)
|
|
|
|
static
|
|
already_AddRefed<IDBRequest> Create(nsISupports* aSource,
|
|
IDBWrapperCache* aOwnerCache,
|
|
IDBTransaction* aTransaction,
|
|
JSContext* aCallingCx);
|
|
|
|
// nsIDOMEventTarget
|
|
virtual nsresult PreHandleEvent(nsEventChainPreVisitor& aVisitor);
|
|
|
|
nsISupports* Source()
|
|
{
|
|
return mSource;
|
|
}
|
|
|
|
void Reset();
|
|
|
|
nsresult NotifyHelperCompleted(HelperBase* aHelper);
|
|
void NotifyHelperSentResultsToChildProcess(nsresult aRv);
|
|
|
|
void SetError(nsresult aRv);
|
|
|
|
nsresult
|
|
GetErrorCode() const
|
|
#ifdef DEBUG
|
|
;
|
|
#else
|
|
{
|
|
return mErrorCode;
|
|
}
|
|
#endif
|
|
|
|
JSContext* GetJSContext();
|
|
|
|
void
|
|
SetActor(IndexedDBRequestParentBase* aActorParent)
|
|
{
|
|
NS_ASSERTION(!aActorParent || !mActorParent,
|
|
"Shouldn't have more than one!");
|
|
mActorParent = aActorParent;
|
|
}
|
|
|
|
IndexedDBRequestParentBase*
|
|
GetActorParent() const
|
|
{
|
|
return mActorParent;
|
|
}
|
|
|
|
void CaptureCaller(JSContext* aCx);
|
|
|
|
void FillScriptErrorEvent(nsScriptErrorEvent* aEvent) const;
|
|
|
|
protected:
|
|
IDBRequest();
|
|
~IDBRequest();
|
|
|
|
nsCOMPtr<nsISupports> mSource;
|
|
nsRefPtr<IDBTransaction> mTransaction;
|
|
|
|
NS_DECL_EVENT_HANDLER(success)
|
|
NS_DECL_EVENT_HANDLER(error)
|
|
|
|
jsval mResultVal;
|
|
|
|
nsCOMPtr<nsIDOMDOMError> mError;
|
|
|
|
IndexedDBRequestParentBase* mActorParent;
|
|
|
|
nsresult mErrorCode;
|
|
bool mHaveResultOrErrorCode;
|
|
|
|
nsString mFilename;
|
|
uint32_t mLineNo;
|
|
};
|
|
|
|
class IDBOpenDBRequest : public IDBRequest,
|
|
public nsIIDBOpenDBRequest
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_FORWARD_NSIIDBREQUEST(IDBRequest::)
|
|
NS_DECL_NSIIDBOPENDBREQUEST
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(IDBOpenDBRequest, IDBRequest)
|
|
|
|
static
|
|
already_AddRefed<IDBOpenDBRequest>
|
|
Create(nsPIDOMWindow* aOwner,
|
|
JSObject* aScriptOwner,
|
|
JSContext* aCallingCx);
|
|
|
|
void SetTransaction(IDBTransaction* aTransaction);
|
|
|
|
// nsIDOMEventTarget
|
|
virtual nsresult PostHandleEvent(nsEventChainPostVisitor& aVisitor);
|
|
|
|
protected:
|
|
~IDBOpenDBRequest();
|
|
|
|
// Only touched on the main thread.
|
|
NS_DECL_EVENT_HANDLER(blocked)
|
|
NS_DECL_EVENT_HANDLER(upgradeneeded)
|
|
};
|
|
|
|
END_INDEXEDDB_NAMESPACE
|
|
|
|
#endif // mozilla_dom_indexeddb_idbrequest_h__
|