2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-11-09 15:43:57 +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/. */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A common base class for representing WebIDL callback function types in C++.
|
|
|
|
*
|
|
|
|
* This class implements common functionality like lifetime
|
|
|
|
* management, initialization with the callable, and setup of the call
|
|
|
|
* environment. Subclasses corresponding to particular callback
|
|
|
|
* function types should provide a Call() method that actually does
|
|
|
|
* the call.
|
|
|
|
*/
|
|
|
|
|
2013-01-28 13:34:29 +00:00
|
|
|
#ifndef mozilla_dom_CallbackFunction_h
|
|
|
|
#define mozilla_dom_CallbackFunction_h
|
2012-11-09 15:43:57 +00:00
|
|
|
|
2013-01-28 13:34:29 +00:00
|
|
|
#include "mozilla/dom/CallbackObject.h"
|
2012-11-09 15:43:57 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-01-28 13:34:29 +00:00
|
|
|
class CallbackFunction : public CallbackObject
|
2012-11-09 15:43:57 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-07-24 11:00:00 +00:00
|
|
|
// See CallbackObject for an explanation of the arguments.
|
|
|
|
explicit CallbackFunction(JSContext* aCx, JS::Handle<JSObject*> aCallable,
|
2013-12-12 01:51:58 +00:00
|
|
|
nsIGlobalObject* aIncumbentGlobal)
|
2015-07-24 11:00:00 +00:00
|
|
|
: CallbackObject(aCx, aCallable, aIncumbentGlobal)
|
2012-11-09 15:43:57 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-17 17:07:43 +00:00
|
|
|
// See CallbackObject for an explanation of the arguments.
|
|
|
|
explicit CallbackFunction(JS::Handle<JSObject*> aCallable,
|
|
|
|
JS::Handle<JSObject*> aAsyncStack,
|
|
|
|
nsIGlobalObject* aIncumbentGlobal)
|
|
|
|
: CallbackObject(aCallable, aAsyncStack, aIncumbentGlobal)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-13 17:43:53 +00:00
|
|
|
JS::Handle<JSObject*> Callable() const
|
2012-11-09 15:43:57 +00:00
|
|
|
{
|
2013-01-28 13:34:29 +00:00
|
|
|
return Callback();
|
2012-11-09 15:43:57 +00:00
|
|
|
}
|
|
|
|
|
2016-02-07 17:08:55 +00:00
|
|
|
JS::Handle<JSObject*> CallablePreserveColor() const
|
|
|
|
{
|
|
|
|
return CallbackPreserveColor();
|
|
|
|
}
|
|
|
|
|
2012-11-09 16:00:25 +00:00
|
|
|
bool HasGrayCallable() const
|
|
|
|
{
|
|
|
|
// Play it safe in case this gets called after unlink.
|
2014-12-05 17:38:34 +00:00
|
|
|
return mCallback && JS::ObjectIsMarkedGray(mCallback);
|
2012-11-09 16:00:25 +00:00
|
|
|
}
|
|
|
|
|
2012-11-09 15:43:57 +00:00
|
|
|
protected:
|
2012-12-06 10:41:14 +00:00
|
|
|
explicit CallbackFunction(CallbackFunction* aCallbackFunction)
|
2013-01-28 13:34:29 +00:00
|
|
|
: CallbackObject(aCallbackFunction)
|
2012-12-06 10:41:14 +00:00
|
|
|
{
|
|
|
|
}
|
2016-05-18 16:23:35 +00:00
|
|
|
|
|
|
|
// See CallbackObject for an explanation of the arguments.
|
|
|
|
CallbackFunction(JSContext* aCx, JS::Handle<JSObject*> aCallable,
|
|
|
|
nsIGlobalObject* aIncumbentGlobal,
|
|
|
|
const FastCallbackConstructor&)
|
|
|
|
: CallbackObject(aCx, aCallable, aIncumbentGlobal,
|
|
|
|
FastCallbackConstructor())
|
|
|
|
{
|
|
|
|
}
|
2012-11-09 15:43:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-01-28 13:34:29 +00:00
|
|
|
|
|
|
|
#endif // mozilla_dom_CallbackFunction_h
|