2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef nsXMLHttpRequest_h__
|
|
|
|
#define nsXMLHttpRequest_h__
|
|
|
|
|
|
|
|
#include "nsIXMLHttpRequest.h"
|
|
|
|
#include "nsISupportsUtils.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIHttpChannel.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIStreamListener.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "jsapi.h"
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIChannelEventSink.h"
|
2010-08-04 19:15:55 -07:00
|
|
|
#include "nsIAsyncVerifyRedirectCallback.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIHttpHeaderVisitor.h"
|
|
|
|
#include "nsIProgressEventSink.h"
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "nsTArray.h"
|
2007-12-12 00:33:32 -08:00
|
|
|
#include "nsIJSNativeInitializer.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMLSProgressEvent.h"
|
2008-08-14 04:07:46 -07:00
|
|
|
#include "nsIDOMNSEvent.h"
|
2008-10-19 14:26:37 -07:00
|
|
|
#include "nsITimer.h"
|
2008-08-14 04:07:46 -07:00
|
|
|
#include "nsIPrivateDOMEvent.h"
|
|
|
|
#include "nsDOMProgressEvent.h"
|
2010-06-17 04:27:52 -07:00
|
|
|
#include "nsDOMEventTargetWrapperCache.h"
|
2011-03-17 09:19:13 -07:00
|
|
|
#include "nsContentUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsILoadGroup;
|
2010-08-04 19:15:55 -07:00
|
|
|
class AsyncVerifyRedirectCallbackForwarder;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-17 04:27:52 -07:00
|
|
|
class nsXHREventTarget : public nsDOMEventTargetWrapperCache,
|
|
|
|
public nsIXMLHttpRequestEventTarget
|
2008-08-14 04:07:46 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-06-17 04:27:52 -07:00
|
|
|
virtual ~nsXHREventTarget() {}
|
2009-06-15 01:27:29 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2010-06-17 04:27:52 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsXHREventTarget,
|
|
|
|
nsDOMEventTargetWrapperCache)
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_NSIXMLHTTPREQUESTEVENTTARGET
|
2009-06-15 01:27:29 -07:00
|
|
|
NS_FORWARD_NSIDOMEVENTTARGET(nsDOMEventTargetHelper::)
|
2008-11-13 08:54:52 -08:00
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
protected:
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnLoadListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnErrorListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnAbortListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnLoadStartListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnProgressListener;
|
2011-03-24 06:22:03 -07:00
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnLoadendListener;
|
2008-08-14 04:07:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsXMLHttpRequestUpload : public nsXHREventTarget,
|
|
|
|
public nsIXMLHttpRequestUpload
|
|
|
|
{
|
|
|
|
public:
|
2008-09-25 07:40:30 -07:00
|
|
|
nsXMLHttpRequestUpload(nsPIDOMWindow* aOwner,
|
|
|
|
nsIScriptContext* aScriptContext)
|
|
|
|
{
|
|
|
|
mOwner = aOwner;
|
|
|
|
mScriptContext = aScriptContext;
|
|
|
|
}
|
2008-10-08 23:38:04 -07:00
|
|
|
virtual ~nsXMLHttpRequestUpload();
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_FORWARD_NSIXMLHTTPREQUESTEVENTTARGET(nsXHREventTarget::)
|
|
|
|
NS_FORWARD_NSIDOMEVENTTARGET(nsXHREventTarget::)
|
|
|
|
NS_DECL_NSIXMLHTTPREQUESTUPLOAD
|
2008-09-30 17:51:53 -07:00
|
|
|
|
|
|
|
PRBool HasListeners()
|
|
|
|
{
|
|
|
|
return mListenerManager && mListenerManager->HasListeners();
|
|
|
|
}
|
2008-08-14 04:07:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsXMLHttpRequest : public nsXHREventTarget,
|
|
|
|
public nsIXMLHttpRequest,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsIJSXMLHttpRequest,
|
|
|
|
public nsIStreamListener,
|
|
|
|
public nsIChannelEventSink,
|
|
|
|
public nsIProgressEventSink,
|
|
|
|
public nsIInterfaceRequestor,
|
2007-12-12 00:33:32 -08:00
|
|
|
public nsSupportsWeakReference,
|
2008-10-19 14:26:37 -07:00
|
|
|
public nsIJSNativeInitializer,
|
|
|
|
public nsITimerCallback
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsXMLHttpRequest();
|
|
|
|
virtual ~nsXMLHttpRequest();
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIXMLHttpRequest
|
|
|
|
NS_DECL_NSIXMLHTTPREQUEST
|
|
|
|
|
|
|
|
// nsIJSXMLHttpRequest
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_IMETHOD GetOnuploadprogress(nsIDOMEventListener** aOnuploadprogress);
|
|
|
|
NS_IMETHOD SetOnuploadprogress(nsIDOMEventListener* aOnuploadprogress);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_FORWARD_NSIXMLHTTPREQUESTEVENTTARGET(nsXHREventTarget::)
|
2008-08-14 04:04:43 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIStreamListener
|
|
|
|
NS_DECL_NSISTREAMLISTENER
|
|
|
|
|
|
|
|
// nsIRequestObserver
|
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
|
|
|
|
// nsIChannelEventSink
|
|
|
|
NS_DECL_NSICHANNELEVENTSINK
|
|
|
|
|
|
|
|
// nsIProgressEventSink
|
|
|
|
NS_DECL_NSIPROGRESSEVENTSINK
|
|
|
|
|
|
|
|
// nsIInterfaceRequestor
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
|
2008-10-19 14:26:37 -07:00
|
|
|
// nsITimerCallback
|
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
|
2007-12-12 00:33:32 -08:00
|
|
|
// nsIJSNativeInitializer
|
|
|
|
NS_IMETHOD Initialize(nsISupports* aOwner, JSContext* cx, JSObject* obj,
|
|
|
|
PRUint32 argc, jsval* argv);
|
|
|
|
|
2009-06-15 01:27:29 -07:00
|
|
|
NS_FORWARD_NSIDOMEVENTTARGET(nsXHREventTarget::)
|
2008-08-14 04:04:43 -07:00
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
// This creates a trusted readystatechange event, which is not cancelable and
|
|
|
|
// doesn't bubble.
|
|
|
|
static nsresult CreateReadystatechangeEvent(nsIDOMEvent** aDOMEvent);
|
|
|
|
// For backwards compatibility aPosition should contain the headers for upload
|
|
|
|
// and aTotalSize is LL_MAXUINT when unknown. Both those values are
|
|
|
|
// used by nsXMLHttpProgressEvent. Normal progress event should not use
|
|
|
|
// headers in aLoaded and aTotal is 0 when unknown.
|
2011-06-23 19:17:58 -07:00
|
|
|
void DispatchProgressEvent(nsDOMEventTargetHelper* aTarget,
|
2008-09-30 17:51:53 -07:00
|
|
|
const nsAString& aType,
|
|
|
|
// Whether to use nsXMLHttpProgressEvent,
|
|
|
|
// which implements LS Progress Event.
|
|
|
|
PRBool aUseLSEventWrapper,
|
|
|
|
PRBool aLengthComputable,
|
|
|
|
// For Progress Events
|
|
|
|
PRUint64 aLoaded, PRUint64 aTotal,
|
|
|
|
// For LS Progress Events
|
|
|
|
PRUint64 aPosition, PRUint64 aTotalSize);
|
2011-06-23 19:17:58 -07:00
|
|
|
void DispatchProgressEvent(nsDOMEventTargetHelper* aTarget,
|
2008-09-30 17:51:53 -07:00
|
|
|
const nsAString& aType,
|
|
|
|
PRBool aLengthComputable,
|
|
|
|
PRUint64 aLoaded, PRUint64 aTotal)
|
2008-08-14 04:07:46 -07:00
|
|
|
{
|
|
|
|
DispatchProgressEvent(aTarget, aType, PR_FALSE,
|
|
|
|
aLengthComputable, aLoaded, aTotal,
|
|
|
|
aLoaded, aLengthComputable ? aTotal : LL_MAXUINT);
|
|
|
|
}
|
|
|
|
|
2007-12-12 00:33:32 -08:00
|
|
|
// This is called by the factory constructor.
|
|
|
|
nsresult Init();
|
|
|
|
|
2008-09-30 16:56:57 -07:00
|
|
|
void SetRequestObserver(nsIRequestObserver* aObserver);
|
|
|
|
|
2011-05-23 18:09:28 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(nsXMLHttpRequest,
|
2008-08-14 04:07:46 -07:00
|
|
|
nsXHREventTarget)
|
2008-09-30 17:51:53 -07:00
|
|
|
PRBool AllowUploadProgress();
|
2011-05-23 18:09:28 -07:00
|
|
|
void RootResultArrayBuffer();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2008-09-11 03:44:15 -07:00
|
|
|
friend class nsMultipartProxyListener;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult DetectCharset(nsACString& aCharset);
|
|
|
|
nsresult ConvertBodyToText(nsAString& aOutBuffer);
|
|
|
|
static NS_METHOD StreamReaderFunc(nsIInputStream* in,
|
|
|
|
void* closure,
|
|
|
|
const char* fromRawSegment,
|
|
|
|
PRUint32 toOffset,
|
|
|
|
PRUint32 count,
|
|
|
|
PRUint32 *writeCount);
|
2011-05-23 18:09:28 -07:00
|
|
|
nsresult CreateResponseArrayBuffer(JSContext* aCx);
|
2011-05-10 16:18:55 -07:00
|
|
|
void CreateResponseBlob(nsIRequest *request);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Change the state of the object with this. The broadcast argument
|
|
|
|
// determines if the onreadystatechange listener should be called.
|
2008-08-14 04:04:43 -07:00
|
|
|
nsresult ChangeState(PRUint32 aState, PRBool aBroadcast = PR_TRUE);
|
2008-10-14 17:12:28 -07:00
|
|
|
nsresult GetLoadGroup(nsILoadGroup **aLoadGroup);
|
|
|
|
nsIURI *GetBaseURI();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-14 04:04:43 -07:00
|
|
|
nsresult RemoveAddEventListener(const nsAString& aType,
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper>& aCurrent,
|
|
|
|
nsIDOMEventListener* aNew);
|
|
|
|
|
|
|
|
nsresult GetInnerEventListener(nsRefPtr<nsDOMEventListenerWrapper>& aWrapper,
|
|
|
|
nsIDOMEventListener** aListener);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
already_AddRefed<nsIHttpChannel> GetCurrentHttpChannel();
|
|
|
|
|
2011-08-11 06:29:50 -07:00
|
|
|
bool IsSystemXHR();
|
2011-03-17 09:19:13 -07:00
|
|
|
|
2007-07-26 19:49:18 -07:00
|
|
|
/**
|
2008-09-30 17:49:30 -07:00
|
|
|
* Check if aChannel is ok for a cross-site request by making sure no
|
2007-07-26 19:49:18 -07:00
|
|
|
* inappropriate headers are set, and no username/password is set.
|
|
|
|
*
|
|
|
|
* Also updates the XML_HTTP_REQUEST_USE_XSITE_AC bit.
|
|
|
|
*/
|
2008-09-30 17:49:30 -07:00
|
|
|
nsresult CheckChannelForCrossSiteRequest(nsIChannel* aChannel);
|
2007-07-26 19:49:18 -07:00
|
|
|
|
2008-10-19 14:26:37 -07:00
|
|
|
void StartProgressEventTimer();
|
|
|
|
|
2010-08-04 19:15:55 -07:00
|
|
|
friend class AsyncVerifyRedirectCallbackForwarder;
|
|
|
|
void OnRedirectVerifyCallback(nsresult result);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsISupports> mContext;
|
2007-07-02 06:20:01 -07:00
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
2007-07-30 17:42:16 -07:00
|
|
|
// mReadRequest is different from mChannel for multipart requests
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIRequest> mReadRequest;
|
2008-10-11 23:30:14 -07:00
|
|
|
nsCOMPtr<nsIDOMDocument> mResponseXML;
|
2011-03-28 13:18:45 -07:00
|
|
|
nsCOMPtr<nsIChannel> mCORSPreflightChannel;
|
|
|
|
nsTArray<nsCString> mCORSUnsafeHeaders;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-14 04:04:43 -07:00
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnUploadProgressListener;
|
|
|
|
nsRefPtr<nsDOMEventListenerWrapper> mOnReadystatechangeListener;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIStreamListener> mXMLParserStreamListener;
|
|
|
|
|
|
|
|
// used to implement getAllResponseHeaders()
|
|
|
|
class nsHeaderVisitor : public nsIHttpHeaderVisitor {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIHTTPHEADERVISITOR
|
|
|
|
nsHeaderVisitor() { }
|
|
|
|
virtual ~nsHeaderVisitor() {}
|
|
|
|
const nsACString &Headers() { return mHeaders; }
|
|
|
|
private:
|
|
|
|
nsCString mHeaders;
|
|
|
|
};
|
|
|
|
|
2010-04-23 10:37:02 -07:00
|
|
|
// The bytes of our response body
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCString mResponseBody;
|
|
|
|
|
2010-04-23 10:37:02 -07:00
|
|
|
// The Unicode version of our response body. This is just a cache; if the
|
|
|
|
// string is not void, we have a cached value. This works because we only
|
|
|
|
// allow looking at this value once state is INTERACTIVE, and at that
|
|
|
|
// point our charset can only change due to more data coming in, which
|
|
|
|
// will cause us to clear the cached value anyway.
|
|
|
|
nsString mResponseBodyUnicode;
|
|
|
|
|
2011-05-10 16:18:55 -07:00
|
|
|
enum {
|
|
|
|
XML_HTTP_RESPONSE_TYPE_DEFAULT,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_ARRAYBUFFER,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_BLOB,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_DOCUMENT,
|
|
|
|
XML_HTTP_RESPONSE_TYPE_TEXT
|
|
|
|
} mResponseType;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMBlob> mResponseBlob;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCString mOverrideMimeType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The notification callbacks the channel had when Send() was
|
|
|
|
* called. We want to forward things here as needed.
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIInterfaceRequestor> mNotificationCallbacks;
|
|
|
|
/**
|
|
|
|
* Sink interfaces that we implement that mNotificationCallbacks may
|
|
|
|
* want to also be notified for. These are inited lazily if we're
|
|
|
|
* asked for the relevant interface.
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIChannelEventSink> mChannelEventSink;
|
|
|
|
nsCOMPtr<nsIProgressEventSink> mProgressEventSink;
|
|
|
|
|
2008-09-30 16:56:57 -07:00
|
|
|
nsIRequestObserver* mRequestObserver;
|
|
|
|
|
2008-12-30 14:24:58 -08:00
|
|
|
nsCOMPtr<nsIURI> mBaseURI;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 mState;
|
2007-07-26 19:49:18 -07:00
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
nsRefPtr<nsXMLHttpRequestUpload> mUpload;
|
2008-10-21 02:06:53 -07:00
|
|
|
PRUint64 mUploadTransferred;
|
|
|
|
PRUint64 mUploadTotal;
|
2008-08-14 04:07:46 -07:00
|
|
|
PRPackedBool mUploadComplete;
|
2008-10-19 14:26:37 -07:00
|
|
|
PRUint64 mUploadProgress; // For legacy
|
|
|
|
PRUint64 mUploadProgressMax; // For legacy
|
2008-08-14 04:07:46 -07:00
|
|
|
|
|
|
|
PRPackedBool mErrorLoad;
|
2008-09-30 16:56:57 -07:00
|
|
|
|
2008-10-19 14:26:37 -07:00
|
|
|
PRPackedBool mTimerIsActive;
|
|
|
|
PRPackedBool mProgressEventWasDelayed;
|
|
|
|
PRPackedBool mLoadLengthComputable;
|
2008-10-23 10:16:45 -07:00
|
|
|
PRUint64 mLoadTotal; // 0 if not known.
|
2008-10-19 14:26:37 -07:00
|
|
|
nsCOMPtr<nsITimer> mProgressNotifier;
|
|
|
|
|
2008-09-30 16:56:57 -07:00
|
|
|
PRPackedBool mFirstStartRequestSeen;
|
2010-08-04 19:15:55 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAsyncVerifyRedirectCallback> mRedirectCallback;
|
|
|
|
nsCOMPtr<nsIChannel> mNewRedirectChannel;
|
2011-05-23 18:09:28 -07:00
|
|
|
|
|
|
|
JSObject* mResultArrayBuffer;
|
2010-03-21 18:52:35 -07:00
|
|
|
|
|
|
|
struct RequestHeader
|
|
|
|
{
|
|
|
|
nsCString header;
|
|
|
|
nsCString value;
|
|
|
|
};
|
|
|
|
nsTArray<RequestHeader> mModifiedRequestHeaders;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// helper class to expose a progress DOM Event
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
class nsXMLHttpProgressEvent : public nsIDOMProgressEvent,
|
|
|
|
public nsIDOMLSProgressEvent,
|
|
|
|
public nsIDOMNSEvent,
|
|
|
|
public nsIPrivateDOMEvent
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2008-08-14 04:07:46 -07:00
|
|
|
nsXMLHttpProgressEvent(nsIDOMProgressEvent* aInner,
|
|
|
|
PRUint64 aCurrentProgress,
|
|
|
|
PRUint64 aMaxProgress);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsXMLHttpProgressEvent();
|
|
|
|
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsXMLHttpProgressEvent, nsIDOMNSEvent)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_FORWARD_NSIDOMEVENT(mInner->)
|
2008-08-14 04:07:46 -07:00
|
|
|
NS_FORWARD_NSIDOMNSEVENT(mInner->)
|
|
|
|
NS_FORWARD_NSIDOMPROGRESSEVENT(mInner->)
|
|
|
|
NS_DECL_NSIDOMLSPROGRESSEVENT
|
|
|
|
// nsPrivateDOMEvent
|
|
|
|
NS_IMETHOD DuplicatePrivateData()
|
|
|
|
{
|
|
|
|
return mInner->DuplicatePrivateData();
|
|
|
|
}
|
|
|
|
NS_IMETHOD SetTarget(nsIDOMEventTarget* aTarget)
|
|
|
|
{
|
|
|
|
return mInner->SetTarget(aTarget);
|
|
|
|
}
|
2008-10-09 16:23:07 -07:00
|
|
|
NS_IMETHOD_(PRBool) IsDispatchStopped()
|
2008-08-14 04:07:46 -07:00
|
|
|
{
|
2008-10-09 16:23:07 -07:00
|
|
|
return mInner->IsDispatchStopped();
|
2008-08-14 04:07:46 -07:00
|
|
|
}
|
2008-10-09 16:23:07 -07:00
|
|
|
NS_IMETHOD_(nsEvent*) GetInternalNSEvent()
|
2008-08-14 04:07:46 -07:00
|
|
|
{
|
2008-10-09 16:23:07 -07:00
|
|
|
return mInner->GetInternalNSEvent();
|
2008-08-14 04:07:46 -07:00
|
|
|
}
|
|
|
|
NS_IMETHOD SetTrusted(PRBool aTrusted)
|
|
|
|
{
|
|
|
|
return mInner->SetTrusted(aTrusted);
|
|
|
|
}
|
2009-11-17 06:22:23 -08:00
|
|
|
virtual void Serialize(IPC::Message* aMsg,
|
|
|
|
PRBool aSerializeInterfaceType)
|
|
|
|
{
|
|
|
|
mInner->Serialize(aMsg, aSerializeInterfaceType);
|
|
|
|
}
|
|
|
|
virtual PRBool Deserialize(const IPC::Message* aMsg, void** aIter)
|
|
|
|
{
|
|
|
|
return mInner->Deserialize(aMsg, aIter);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
2008-08-14 04:07:46 -07:00
|
|
|
// Use nsDOMProgressEvent so that we can forward
|
|
|
|
// most of the method calls easily.
|
|
|
|
nsRefPtr<nsDOMProgressEvent> mInner;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint64 mCurProgress;
|
|
|
|
PRUint64 mMaxProgress;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|