2013-02-08 12:25:37 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=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_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 01:51:36 -07:00
|
|
|
class DOMCursor : public DOMRequest
|
|
|
|
, public nsIDOMDOMCursor
|
2013-02-08 12:25:37 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIDOMDOMCURSOR
|
2013-08-14 11:29:20 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DOMCursor,
|
|
|
|
DOMRequest)
|
2013-02-08 12:25:37 -08:00
|
|
|
|
2014-01-06 18:53:23 -08:00
|
|
|
DOMCursor(nsPIDOMWindow* aWindow, nsICursorContinueCallback *aCallback);
|
2013-02-08 12:25:37 -08:00
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
2013-03-17 01:51:36 -07:00
|
|
|
|
|
|
|
bool Done() const
|
|
|
|
{
|
|
|
|
return mFinished;
|
|
|
|
}
|
|
|
|
virtual void Continue(ErrorResult& aRv);
|
|
|
|
|
2013-02-08 12:25:37 -08:00
|
|
|
void Reset();
|
|
|
|
void FireDone();
|
|
|
|
|
2014-07-08 14:23:17 -07:00
|
|
|
protected:
|
|
|
|
~DOMCursor() {}
|
|
|
|
|
2013-02-08 12:25:37 -08:00
|
|
|
private:
|
2013-03-17 01:51:36 -07:00
|
|
|
DOMCursor() MOZ_DELETE;
|
2014-10-11 06:46:01 -07: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,
|
|
|
|
AnyCallback* aRejectCallback, ErrorResult& aRv) MOZ_DELETE;
|
2013-03-17 01:51:36 -07:00
|
|
|
|
2013-02-08 12:25:37 -08:00
|
|
|
nsCOMPtr<nsICursorContinueCallback> mCallback;
|
|
|
|
bool mFinished;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_domcursor_h__ */
|