2017-03-22 13:06:23 +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_FetchObserver_h
|
|
|
|
#define mozilla_dom_FetchObserver_h
|
|
|
|
|
|
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
|
|
|
#include "mozilla/dom/FetchObserverBinding.h"
|
2017-08-29 12:31:06 +03:00
|
|
|
#include "mozilla/dom/AbortSignal.h"
|
2017-03-22 13:06:23 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class FetchObserver final : public DOMEventTargetHelper
|
2017-08-29 12:31:06 +03:00
|
|
|
, public AbortSignal::Follower
|
2017-03-22 13:06:23 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(FetchObserver, DOMEventTargetHelper)
|
|
|
|
|
|
|
|
static bool
|
|
|
|
IsEnabled(JSContext* aCx, JSObject* aGlobal);
|
|
|
|
|
2017-08-29 12:31:06 +03:00
|
|
|
FetchObserver(nsIGlobalObject* aGlobal, AbortSignal* aSignal);
|
2017-03-22 13:06:23 +03:00
|
|
|
|
|
|
|
JSObject*
|
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
|
|
|
|
FetchState
|
|
|
|
State() const;
|
|
|
|
|
|
|
|
IMPL_EVENT_HANDLER(statechange);
|
|
|
|
IMPL_EVENT_HANDLER(requestprogress);
|
|
|
|
IMPL_EVENT_HANDLER(responseprogress);
|
|
|
|
|
2017-03-22 13:07:27 +03:00
|
|
|
void
|
2017-08-29 10:16:43 +03:00
|
|
|
Aborted() override;
|
2017-03-22 13:07:27 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
SetState(FetchState aState);
|
|
|
|
|
2017-03-22 13:06:23 +03:00
|
|
|
private:
|
|
|
|
~FetchObserver() = default;
|
|
|
|
|
|
|
|
FetchState mState;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // dom namespace
|
|
|
|
} // mozilla namespace
|
|
|
|
|
|
|
|
#endif // mozilla_dom_FetchObserver_h
|