2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 sw=2 et tw=78: */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIScriptContext.h"
|
2013-03-21 17:05:20 -07:00
|
|
|
#include "nsIDocument.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIArray.h"
|
|
|
|
#include "nsIScriptTimeoutHandler.h"
|
|
|
|
#include "nsIXPConnect.h"
|
|
|
|
#include "nsIJSRuntimeService.h"
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "nsDOMJSUtils.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsJSEnvironment.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
2012-07-27 07:03:27 -07:00
|
|
|
#include "nsError.h"
|
2008-01-29 18:11:48 -08:00
|
|
|
#include "nsGlobalWindow.h"
|
2010-03-08 00:24:50 -08:00
|
|
|
#include "nsIContentSecurityPolicy.h"
|
2012-02-07 12:28:08 -08:00
|
|
|
#include "nsAlgorithm.h"
|
2012-06-14 19:31:55 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-10-26 06:32:10 -07:00
|
|
|
#include "mozilla/Likely.h"
|
2013-01-15 04:22:03 -08:00
|
|
|
#include <algorithm>
|
2013-01-03 11:02:36 -08:00
|
|
|
#include "mozilla/dom/FunctionBinding.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
static const char kSetIntervalStr[] = "setInterval";
|
|
|
|
static const char kSetTimeoutStr[] = "setTimeout";
|
|
|
|
|
2013-01-03 11:02:36 -08:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Our JS nsIScriptTimeoutHandler implementation.
|
2012-06-14 19:31:55 -07:00
|
|
|
class nsJSScriptTimeoutHandler MOZ_FINAL : public nsIScriptTimeoutHandler
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2007-10-29 06:45:07 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsJSScriptTimeoutHandler)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsJSScriptTimeoutHandler();
|
|
|
|
~nsJSScriptTimeoutHandler();
|
|
|
|
|
|
|
|
virtual const PRUnichar *GetHandlerText();
|
2013-01-03 11:02:36 -08:00
|
|
|
virtual Function* GetCallback()
|
|
|
|
{
|
|
|
|
return mFunction;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2013-01-03 11:02:36 -08:00
|
|
|
virtual void GetLocation(const char **aFileName, uint32_t *aLineNo)
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
*aFileName = mFileName.get();
|
|
|
|
*aLineNo = mLineNo;
|
|
|
|
}
|
|
|
|
|
2013-01-03 11:02:36 -08:00
|
|
|
virtual const nsTArray<JS::Value>& GetArgs()
|
|
|
|
{
|
|
|
|
return mArgs;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
nsresult Init(nsGlobalWindow *aWindow, bool *aIsInterval,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t *aInterval);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void ReleaseJSObjects();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// filename, line number and JS language version string of the
|
|
|
|
// caller of setTimeout()
|
2008-07-17 08:05:20 -07:00
|
|
|
nsCString mFileName;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mLineNo;
|
2013-01-03 11:02:36 -08:00
|
|
|
nsTArray<JS::Value> mArgs;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// The JS expression to evaluate or function to call, if !mExpr
|
2010-12-03 00:24:17 -08:00
|
|
|
JSFlatString *mExpr;
|
2013-01-03 11:02:36 -08:00
|
|
|
nsRefPtr<Function> mFunction;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// nsJSScriptTimeoutHandler
|
|
|
|
// QueryInterface implementation for nsJSScriptTimeoutHandler
|
2010-11-08 07:02:49 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsJSScriptTimeoutHandler)
|
2007-03-22 10:30:00 -07:00
|
|
|
tmp->ReleaseJSObjects();
|
2010-11-08 07:02:49 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
2009-02-27 06:48:26 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INTERNAL(nsJSScriptTimeoutHandler)
|
2012-10-26 06:32:10 -07:00
|
|
|
if (MOZ_UNLIKELY(cb.WantDebugInfo())) {
|
2012-09-01 19:35:17 -07:00
|
|
|
nsAutoCString name("nsJSScriptTimeoutHandler");
|
2009-02-27 06:48:26 -08:00
|
|
|
if (tmp->mExpr) {
|
2012-08-27 10:41:04 -07:00
|
|
|
name.AppendLiteral(" [");
|
|
|
|
name.Append(tmp->mFileName);
|
|
|
|
name.AppendLiteral(":");
|
|
|
|
name.AppendInt(tmp->mLineNo);
|
|
|
|
name.AppendLiteral("]");
|
2009-02-27 06:48:26 -08:00
|
|
|
}
|
2013-01-03 11:02:36 -08:00
|
|
|
else if (tmp->mFunction) {
|
|
|
|
JSFunction* fun =
|
|
|
|
JS_GetObjectFunction(js::UncheckedUnwrap(tmp->mFunction->Callable()));
|
2011-11-07 04:55:59 -08:00
|
|
|
if (fun && JS_GetFunctionId(fun)) {
|
2011-03-14 13:59:53 -07:00
|
|
|
JSFlatString *funId = JS_ASSERT_STRING_IS_FLAT(JS_GetFunctionId(fun));
|
|
|
|
size_t size = 1 + JS_PutEscapedFlatString(NULL, 0, funId, 0);
|
2012-08-27 10:41:04 -07:00
|
|
|
char *funIdName = new char[size];
|
|
|
|
if (funIdName) {
|
|
|
|
JS_PutEscapedFlatString(funIdName, size, funId, 0);
|
|
|
|
name.AppendLiteral(" [");
|
|
|
|
name.Append(funIdName);
|
|
|
|
delete[] funIdName;
|
|
|
|
name.AppendLiteral("]");
|
2010-10-28 08:15:53 -07:00
|
|
|
}
|
2009-02-27 06:48:26 -08:00
|
|
|
}
|
|
|
|
}
|
2012-08-27 10:41:04 -07:00
|
|
|
cb.DescribeRefCountedNode(tmp->mRefCnt.get(), name.get());
|
2009-02-27 06:48:26 -08:00
|
|
|
}
|
|
|
|
else {
|
2011-06-23 14:10:52 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_DESCRIBE(nsJSScriptTimeoutHandler,
|
|
|
|
tmp->mRefCnt.get())
|
2009-02-27 06:48:26 -08:00
|
|
|
}
|
|
|
|
|
2013-01-03 11:02:36 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFunction)
|
2007-10-29 06:45:07 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2007-10-29 06:45:07 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(nsJSScriptTimeoutHandler)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mExpr)
|
2013-01-03 11:02:36 -08:00
|
|
|
for (uint32_t i = 0; i < tmp->mArgs.Length(); ++i) {
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JSVAL_MEMBER_CALLBACK(mArgs[i])
|
|
|
|
}
|
2007-10-29 06:45:07 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2007-04-25 09:35:27 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsJSScriptTimeoutHandler)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptTimeoutHandler)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsJSScriptTimeoutHandler)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsJSScriptTimeoutHandler)
|
|
|
|
|
|
|
|
nsJSScriptTimeoutHandler::nsJSScriptTimeoutHandler() :
|
|
|
|
mLineNo(0),
|
2013-01-03 11:02:36 -08:00
|
|
|
mExpr(nullptr)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsJSScriptTimeoutHandler::~nsJSScriptTimeoutHandler()
|
|
|
|
{
|
|
|
|
ReleaseJSObjects();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsJSScriptTimeoutHandler::ReleaseJSObjects()
|
|
|
|
{
|
2012-11-27 17:37:57 -08:00
|
|
|
if (mExpr) {
|
|
|
|
mExpr = nullptr;
|
|
|
|
} else {
|
2013-01-03 11:02:36 -08:00
|
|
|
mFunction = nullptr;
|
|
|
|
mArgs.Clear();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2012-11-27 17:37:57 -08:00
|
|
|
NS_DROP_JS_OBJECTS(this, nsJSScriptTimeoutHandler);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2011-09-28 23:19:26 -07:00
|
|
|
nsJSScriptTimeoutHandler::Init(nsGlobalWindow *aWindow, bool *aIsInterval,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t *aInterval)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-01-03 11:02:36 -08:00
|
|
|
if (!aWindow->GetContextInternal() || !aWindow->FastGetGlobalJSObject()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// This window was already closed, or never properly initialized,
|
|
|
|
// don't let a timer be scheduled on such a window.
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
nsAXPCNativeCallContext *ncc = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult rv = nsContentUtils::XPConnect()->
|
2008-01-15 07:50:57 -08:00
|
|
|
GetCurrentNativeCallContext(&ncc);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
JSContext *cx = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t argc;
|
2013-04-11 15:52:10 -07:00
|
|
|
JS::Value *argv = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
JSFlatString *expr = nullptr;
|
|
|
|
JSObject *funobj = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
JSAutoRequest ar(cx);
|
|
|
|
|
|
|
|
if (argc < 1) {
|
2010-03-08 00:24:50 -08:00
|
|
|
::JS_ReportError(cx, "Function %s requires at least 2 parameter",
|
2007-07-03 15:38:04 -07:00
|
|
|
*aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2007-06-15 14:47:37 -07:00
|
|
|
return NS_ERROR_DOM_TYPE_ERR;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
Bug 708735 - Use <stdint.h> types in JSAPI and throughout SpiderMonkey. Continue to provide the {u,}int{8,16,32,64} and JS{Uint,Int}{8,16,32,64} integer types through a single header, however, for a simpler backout strategy -- and also to ease the transition for embedders. r=timeless on switching the jsd API to use the <stdint.h> types, r=luke, r=dmandelin
2011-12-08 19:54:10 -08:00
|
|
|
int32_t interval = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (argc > 1 && !::JS_ValueToECMAInt32(cx, argv[1], &interval)) {
|
|
|
|
::JS_ReportError(cx,
|
|
|
|
"Second argument to %s must be a millisecond interval",
|
|
|
|
aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2007-06-15 14:47:37 -07:00
|
|
|
return NS_ERROR_DOM_TYPE_ERR;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-07-03 15:38:04 -07:00
|
|
|
if (argc == 1) {
|
|
|
|
// If no interval was specified, treat this like a timeout, to avoid
|
|
|
|
// setting an interval of 0 milliseconds.
|
2011-10-17 07:59:28 -07:00
|
|
|
*aIsInterval = false;
|
2007-07-03 15:38:04 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
switch (::JS_TypeOfValue(cx, argv[0])) {
|
|
|
|
case JSTYPE_FUNCTION:
|
|
|
|
funobj = JSVAL_TO_OBJECT(argv[0]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case JSTYPE_STRING:
|
|
|
|
case JSTYPE_OBJECT:
|
2010-12-03 00:24:17 -08:00
|
|
|
{
|
|
|
|
JSString *str = ::JS_ValueToString(cx, argv[0]);
|
|
|
|
if (!str)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
expr = ::JS_FlattenString(cx, str);
|
|
|
|
if (!expr)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
argv[0] = STRING_TO_JSVAL(str);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
::JS_ReportError(cx, "useless %s call (missing quotes around argument?)",
|
2007-07-03 15:38:04 -07:00
|
|
|
*aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Return an error that nsGlobalWindow can recognize and turn into NS_OK.
|
|
|
|
return NS_ERROR_DOM_TYPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (expr) {
|
2010-03-08 00:24:50 -08:00
|
|
|
// if CSP is enabled, and setTimeout/setInterval was called with a string
|
|
|
|
// or object, disable the registration and log an error
|
|
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(aWindow->GetExtantDocument());
|
|
|
|
|
|
|
|
if (doc) {
|
|
|
|
nsCOMPtr<nsIContentSecurityPolicy> csp;
|
|
|
|
nsresult rv = doc->NodePrincipal()->GetCsp(getter_AddRefs(csp));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (csp) {
|
2012-10-15 13:54:58 -07:00
|
|
|
bool allowsEval = true;
|
|
|
|
bool reportViolation = false;
|
|
|
|
rv = csp->GetAllowsEval(&reportViolation, &allowsEval);
|
2010-03-08 00:24:50 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2012-10-15 13:54:58 -07:00
|
|
|
if (reportViolation) {
|
|
|
|
// TODO : FIX DATA in violation report.
|
|
|
|
NS_NAMED_LITERAL_STRING(scriptSample, "call to eval() or related function blocked by CSP");
|
|
|
|
|
|
|
|
// Get the calling location.
|
|
|
|
uint32_t lineNum = 0;
|
|
|
|
const char *fileName;
|
|
|
|
nsAutoCString aFileName;
|
|
|
|
if (nsJSUtils::GetCallingLocation(cx, &fileName, &lineNum)) {
|
|
|
|
aFileName.Assign(fileName);
|
|
|
|
} else {
|
|
|
|
aFileName.Assign("unknown");
|
|
|
|
}
|
|
|
|
|
|
|
|
csp->LogViolationDetails(nsIContentSecurityPolicy::VIOLATION_TYPE_EVAL,
|
|
|
|
NS_ConvertUTF8toUTF16(aFileName),
|
|
|
|
scriptSample,
|
|
|
|
lineNum);
|
|
|
|
}
|
2010-03-08 00:24:50 -08:00
|
|
|
|
2012-10-15 13:54:58 -07:00
|
|
|
if (!allowsEval) {
|
2010-03-08 00:24:50 -08:00
|
|
|
// Note: Our only caller knows to turn NS_ERROR_DOM_TYPE_ERR into NS_OK.
|
|
|
|
return NS_ERROR_DOM_TYPE_ERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // if there's no document, we don't have to do anything.
|
|
|
|
|
2012-11-12 17:15:00 -08:00
|
|
|
NS_HOLD_JS_OBJECTS(this, nsJSScriptTimeoutHandler);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
mExpr = expr;
|
2007-09-15 09:51:12 -07:00
|
|
|
|
|
|
|
// Get the calling location.
|
|
|
|
const char *filename;
|
2011-04-07 14:25:32 -07:00
|
|
|
if (nsJSUtils::GetCallingLocation(cx, &filename, &mLineNo)) {
|
2007-09-15 09:51:12 -07:00
|
|
|
mFileName.Assign(filename);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
} else if (funobj) {
|
2012-11-12 17:15:00 -08:00
|
|
|
NS_HOLD_JS_OBJECTS(this, nsJSScriptTimeoutHandler);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-01-03 11:02:36 -08:00
|
|
|
bool ok;
|
|
|
|
mFunction = new Function(cx, aWindow->FastGetGlobalJSObject(), funobj, &ok);
|
|
|
|
if (!ok) {
|
|
|
|
NS_DROP_JS_OBJECTS(this, nsJSScriptTimeoutHandler);
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-02-07 12:28:08 -08:00
|
|
|
// Create our arg array. argc is the number of arguments passed
|
|
|
|
// to setTimeout or setInterval; the first two are our callback
|
|
|
|
// and the delay, so only arguments after that need to go in our
|
|
|
|
// array.
|
2013-01-15 04:22:03 -08:00
|
|
|
// std::max(argc - 2, 0) wouldn't work right because argc is unsigned.
|
2013-01-03 11:02:36 -08:00
|
|
|
uint32_t argCount = std::max(argc, 2u) - 2;
|
|
|
|
FallibleTArray<JS::Value> args;
|
|
|
|
if (!args.SetCapacity(argCount)) {
|
|
|
|
// No need to drop here, since we already have a non-null mFunction
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2013-01-03 11:02:36 -08:00
|
|
|
for (uint32_t idx = 0; idx < argCount; ++idx) {
|
|
|
|
*args.AppendElement() = argv[idx + 2];
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2013-01-03 11:02:36 -08:00
|
|
|
args.SwapElements(mArgs);
|
2007-03-22 10:30:00 -07:00
|
|
|
} else {
|
|
|
|
NS_WARNING("No func and no expr - why are we here?");
|
|
|
|
}
|
|
|
|
*aInterval = interval;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PRUnichar *
|
|
|
|
nsJSScriptTimeoutHandler::GetHandlerText()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mExpr, "No expression, so no handler text!");
|
2010-12-03 00:24:17 -08:00
|
|
|
return ::JS_GetFlatStringChars(mExpr);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-29 18:11:48 -08:00
|
|
|
nsresult NS_CreateJSTimeoutHandler(nsGlobalWindow *aWindow,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *aIsInterval,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t *aInterval,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIScriptTimeoutHandler **aRet)
|
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
*aRet = nullptr;
|
2013-01-03 11:02:36 -08:00
|
|
|
nsRefPtr<nsJSScriptTimeoutHandler> handler = new nsJSScriptTimeoutHandler();
|
2008-01-29 18:11:48 -08:00
|
|
|
nsresult rv = handler->Init(aWindow, aIsInterval, aInterval);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2007-08-09 15:19:59 -07:00
|
|
|
|
2013-01-03 11:02:36 -08:00
|
|
|
handler.forget(aRet);
|
2007-08-09 15:19:59 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|