2016-06-27 20:13:41 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=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_XMLHttpRequestEventTarget_h
|
|
|
|
#define mozilla_dom_XMLHttpRequestEventTarget_h
|
|
|
|
|
|
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2017-11-20 01:11:41 +03:00
|
|
|
class XMLHttpRequestEventTarget : public DOMEventTargetHelper {
|
2016-06-27 20:13:41 +03:00
|
|
|
protected:
|
|
|
|
explicit XMLHttpRequestEventTarget(DOMEventTargetHelper* aOwner)
|
|
|
|
: DOMEventTargetHelper(aOwner) {}
|
|
|
|
|
2020-05-14 08:28:36 +03:00
|
|
|
explicit XMLHttpRequestEventTarget(nsIGlobalObject* aGlobalObject)
|
|
|
|
: DOMEventTargetHelper(aGlobalObject) {}
|
2016-06-27 20:13:41 +03:00
|
|
|
|
2020-02-20 18:59:01 +03:00
|
|
|
virtual ~XMLHttpRequestEventTarget() = default;
|
2016-06-27 20:13:41 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(XMLHttpRequestEventTarget,
|
|
|
|
DOMEventTargetHelper)
|
|
|
|
|
2019-06-17 07:36:29 +03:00
|
|
|
mozilla::Maybe<EventCallbackDebuggerNotificationType>
|
2020-12-10 14:09:32 +03:00
|
|
|
GetDebuggerNotificationType() const override;
|
2019-06-17 07:36:29 +03:00
|
|
|
|
2016-06-27 20:13:41 +03:00
|
|
|
IMPL_EVENT_HANDLER(loadstart)
|
|
|
|
IMPL_EVENT_HANDLER(progress)
|
|
|
|
IMPL_EVENT_HANDLER(abort)
|
|
|
|
IMPL_EVENT_HANDLER(error)
|
|
|
|
IMPL_EVENT_HANDLER(load)
|
|
|
|
IMPL_EVENT_HANDLER(timeout)
|
|
|
|
IMPL_EVENT_HANDLER(loadend)
|
|
|
|
|
2016-06-27 20:13:41 +03:00
|
|
|
nsISupports* GetParentObject() const { return GetOwner(); }
|
|
|
|
|
2016-06-27 20:13:41 +03:00
|
|
|
virtual void DisconnectFromOwner() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_XMLHttpRequestEventTarget_h
|