Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/dom/fetch/FetchObserver.h
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
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/. */
6
7
#ifndef mozilla_dom_FetchObserver_h
8
#define mozilla_dom_FetchObserver_h
9
10
#include "mozilla/DOMEventTargetHelper.h"
11
#include "mozilla/dom/FetchObserverBinding.h"
12
#include "mozilla/dom/AbortSignal.h"
13
14
namespace mozilla {
15
namespace dom {
16
17
class FetchObserver final : public DOMEventTargetHelper
18
                          , public AbortFollower
19
{
20
public:
21
  NS_DECL_ISUPPORTS_INHERITED
22
  NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(FetchObserver, DOMEventTargetHelper)
23
24
  FetchObserver(nsIGlobalObject* aGlobal, AbortSignalImpl* aSignalImpl);
25
26
  JSObject*
27
  WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
28
29
  FetchState
30
  State() const;
31
32
  IMPL_EVENT_HANDLER(statechange);
33
  IMPL_EVENT_HANDLER(requestprogress);
34
  IMPL_EVENT_HANDLER(responseprogress);
35
36
  void
37
  Abort() override;
38
39
  void
40
  SetState(FetchState aState);
41
42
private:
43
0
  ~FetchObserver() = default;
44
45
  FetchState mState;
46
};
47
48
} // dom namespace
49
} // mozilla namespace
50
51
#endif // mozilla_dom_FetchObserver_h