2012-11-09 07:43:57 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* 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 05:34:29 -08:00
|
|
|
#ifndef mozilla_dom_CallbackFunction_h
|
|
|
|
#define mozilla_dom_CallbackFunction_h
|
2012-11-09 07:43:57 -08:00
|
|
|
|
2013-01-28 05:34:29 -08:00
|
|
|
#include "mozilla/dom/CallbackObject.h"
|
2012-11-09 07:43:57 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-01-28 05:34:29 -08:00
|
|
|
class CallbackFunction : public CallbackObject
|
2012-11-09 07:43:57 -08:00
|
|
|
{
|
|
|
|
public:
|
2013-12-11 17:51:58 -08:00
|
|
|
explicit CallbackFunction(JS::Handle<JSObject*> aCallable,
|
2013-12-11 17:51:58 -08:00
|
|
|
nsIGlobalObject* aIncumbentGlobal)
|
|
|
|
: CallbackObject(aCallable, aIncumbentGlobal)
|
2012-11-09 07:43:57 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-13 10:43:53 -07:00
|
|
|
JS::Handle<JSObject*> Callable() const
|
2012-11-09 07:43:57 -08:00
|
|
|
{
|
2013-01-28 05:34:29 -08:00
|
|
|
return Callback();
|
2012-11-09 07:43:57 -08:00
|
|
|
}
|
|
|
|
|
2012-11-09 08:00:25 -08:00
|
|
|
bool HasGrayCallable() const
|
|
|
|
{
|
|
|
|
// Play it safe in case this gets called after unlink.
|
2013-01-28 05:34:29 -08:00
|
|
|
return mCallback && xpc_IsGrayGCThing(mCallback);
|
2012-11-09 08:00:25 -08:00
|
|
|
}
|
|
|
|
|
2012-11-09 07:43:57 -08:00
|
|
|
protected:
|
2012-12-06 02:41:14 -08:00
|
|
|
explicit CallbackFunction(CallbackFunction* aCallbackFunction)
|
2013-01-28 05:34:29 -08:00
|
|
|
: CallbackObject(aCallbackFunction)
|
2012-12-06 02:41:14 -08:00
|
|
|
{
|
|
|
|
}
|
2012-11-09 07:43:57 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-01-28 05:34:29 -08:00
|
|
|
|
|
|
|
#endif // mozilla_dom_CallbackFunction_h
|