2013-02-08 20:25:37 +00: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/. */
|
|
|
|
|
|
|
|
#include "DOMCursor.h"
|
2013-03-17 08:51:36 +00:00
|
|
|
#include "mozilla/dom/DOMCursorBinding.h"
|
2013-02-08 20:25:37 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-04-25 16:49:00 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED(DOMCursor, DOMRequest,
|
|
|
|
mCallback)
|
2013-02-08 20:25:37 +00:00
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(DOMCursor)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMDOMCursor)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(DOMRequest)
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF_INHERITED(DOMCursor, DOMRequest)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(DOMCursor, DOMRequest)
|
|
|
|
|
2014-01-07 02:53:23 +00:00
|
|
|
DOMCursor::DOMCursor(nsPIDOMWindow* aWindow, nsICursorContinueCallback* aCallback)
|
2013-02-08 20:25:37 +00:00
|
|
|
: DOMRequest(aWindow)
|
|
|
|
, mCallback(aCallback)
|
|
|
|
, mFinished(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DOMCursor::Reset()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mFinished);
|
|
|
|
|
|
|
|
// Reset the request state so we can FireSuccess() again.
|
2013-08-14 18:29:20 +00:00
|
|
|
mResult = JSVAL_VOID;
|
2013-02-08 20:25:37 +00:00
|
|
|
mDone = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DOMCursor::FireDone()
|
|
|
|
{
|
|
|
|
Reset();
|
|
|
|
mFinished = true;
|
2013-05-18 01:48:25 +00:00
|
|
|
FireSuccess(JS::UndefinedHandleValue);
|
2013-02-08 20:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCursor::GetDone(bool *aDone)
|
|
|
|
{
|
2013-03-17 08:51:36 +00:00
|
|
|
*aDone = Done();
|
2013-02-08 20:25:37 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCursor::Continue()
|
2013-03-17 08:51:36 +00:00
|
|
|
{
|
|
|
|
ErrorResult rv;
|
|
|
|
Continue(rv);
|
|
|
|
return rv.ErrorCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DOMCursor::Continue(ErrorResult& aRv)
|
2013-02-08 20:25:37 +00:00
|
|
|
{
|
2013-03-02 00:21:01 +00:00
|
|
|
MOZ_ASSERT(mCallback, "If you're creating your own cursor class with no callback, you should override Continue()");
|
|
|
|
|
2013-02-08 20:25:37 +00:00
|
|
|
// We need to have a result here because we must be in a 'success' state.
|
|
|
|
if (mResult == JSVAL_VOID) {
|
2013-03-17 08:51:36 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR);
|
|
|
|
return;
|
2013-02-08 20:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Reset();
|
|
|
|
mCallback->HandleContinue();
|
2013-03-17 08:51:36 +00:00
|
|
|
}
|
2013-02-08 20:25:37 +00:00
|
|
|
|
2013-03-17 08:51:36 +00:00
|
|
|
/* virtual */ JSObject*
|
2014-04-08 22:27:18 +00:00
|
|
|
DOMCursor::WrapObject(JSContext* aCx)
|
2013-03-17 08:51:36 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return DOMCursorBinding::Wrap(aCx, this);
|
2013-02-08 20:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|