Bug 932154: Define postRILMessage with the right argument count. r=vicamo

This commit is contained in:
Kyle Huey 2013-11-05 22:16:39 +08:00
Родитель 020d8b6c36
Коммит eab1dbcdec
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -144,7 +144,7 @@ ConnectWorkerToRIL::RunTask(JSContext *aCx)
JSObject *workerGlobal = JS::CurrentGlobalOrNull(aCx);
return !!JS_DefineFunction(aCx, workerGlobal,
"postRILMessage", PostToRIL, 1, 0);
"postRILMessage", PostToRIL, 2, 0);
}
class DispatchRILEvent : public WorkerTask