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/. */
|
|
|
|
|
|
|
|
#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)
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
DOMCursor::DOMCursor(nsPIDOMWindowInner* aWindow, nsICursorContinueCallback* aCallback)
|
2013-02-08 20:25:37 +00:00
|
|
|
: DOMRequest(aWindow)
|
|
|
|
, mCallback(aCallback)
|
|
|
|
, mFinished(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-06-28 16:34:01 +00:00
|
|
|
DOMCursor::DOMCursor(nsIGlobalObject* aGlobal, nsICursorContinueCallback* aCallback)
|
|
|
|
: DOMRequest(aGlobal)
|
|
|
|
, mCallback(aCallback)
|
|
|
|
, mFinished(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-02-08 20:25:37 +00:00
|
|
|
void
|
|
|
|
DOMCursor::Reset()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mFinished);
|
|
|
|
|
|
|
|
// Reset the request state so we can FireSuccess() again.
|
2015-01-14 07:59:06 +00:00
|
|
|
mResult.setUndefined();
|
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);
|
2015-04-27 13:18:51 +00:00
|
|
|
return rv.StealNSResult();
|
2013-03-17 08:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
2015-01-14 07:59:06 +00:00
|
|
|
if (mResult.isUndefined()) {
|
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*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
DOMCursor::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-03-17 08:51:36 +00:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
return DOMCursorBinding::Wrap(aCx, this, aGivenProto);
|
2013-02-08 20:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|