2013-02-08 20:25:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 19:32:37 +00:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-02-08 20:25:37 +00:00
|
|
|
/* 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_domcursor_h__
|
|
|
|
#define mozilla_dom_domcursor_h__
|
|
|
|
|
|
|
|
#include "nsIDOMDOMCursor.h"
|
|
|
|
#include "DOMRequest.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-17 08:51:36 +00:00
|
|
|
class DOMCursor : public DOMRequest
|
|
|
|
, public nsIDOMDOMCursor
|
2013-02-08 20:25:37 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIDOMDOMCURSOR
|
2013-08-14 18:29:20 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DOMCursor,
|
|
|
|
DOMRequest)
|
2013-02-08 20:25:37 +00:00
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
DOMCursor(nsPIDOMWindowInner* aWindow, nsICursorContinueCallback *aCallback);
|
2015-06-28 16:34:01 +00:00
|
|
|
DOMCursor(nsIGlobalObject* aGlobal, nsICursorContinueCallback *aCallback);
|
2013-02-08 20:25:37 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-03-17 08:51:36 +00:00
|
|
|
|
|
|
|
bool Done() const
|
|
|
|
{
|
|
|
|
return mFinished;
|
|
|
|
}
|
|
|
|
virtual void Continue(ErrorResult& aRv);
|
|
|
|
|
2013-02-08 20:25:37 +00:00
|
|
|
void Reset();
|
|
|
|
void FireDone();
|
|
|
|
|
2014-07-08 21:23:17 +00:00
|
|
|
protected:
|
|
|
|
~DOMCursor() {}
|
|
|
|
|
2013-02-08 20:25:37 +00:00
|
|
|
private:
|
2015-01-06 23:35:02 +00:00
|
|
|
DOMCursor() = delete;
|
2014-10-11 13:46:01 +00:00
|
|
|
// Calling Then() on DOMCursor is a mistake, since the DOMCursor object
|
|
|
|
// should not have a .then() method from JS' point of view.
|
|
|
|
already_AddRefed<mozilla::dom::Promise>
|
|
|
|
Then(JSContext* aCx, AnyCallback* aResolveCallback,
|
2015-01-06 23:35:02 +00:00
|
|
|
AnyCallback* aRejectCallback, ErrorResult& aRv) = delete;
|
2013-03-17 08:51:36 +00:00
|
|
|
|
2013-02-08 20:25:37 +00:00
|
|
|
nsCOMPtr<nsICursorContinueCallback> mCallback;
|
|
|
|
bool mFinished;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_domcursor_h__ */
|