Bug 1250963 part 2. Remove the unused JSContext argument of WorkerPrivate::ModifyBusyCount. r=khuey

This commit is contained in:
Boris Zbarsky 2016-02-25 16:05:39 -05:00
Родитель 239833a69f
Коммит f0afee106b
3 изменённых файлов: 8 добавлений и 11 удалений

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

@ -471,7 +471,7 @@ private:
virtual bool
WorkerRun(JSContext* aCx, WorkerPrivate* aWorkerPrivate) override
{
return aWorkerPrivate->ModifyBusyCount(aCx, mIncrease);
return aWorkerPrivate->ModifyBusyCount(mIncrease);
}
virtual void
@ -862,7 +862,7 @@ private:
aWorkerPrivate->AssertIsOnParentThread();
// Modify here, but not in PostRun! This busy count addition will be matched
// by the CloseEventRunnable.
return aWorkerPrivate->ModifyBusyCount(aCx, true);
return aWorkerPrivate->ModifyBusyCount(true);
}
virtual void
@ -873,7 +873,7 @@ private:
if (!aDispatchResult) {
// We couldn't dispatch to the worker, which means it's already dead.
// Undo the busy count modification.
aWorkerPrivate->ModifyBusyCount(aCx, false);
aWorkerPrivate->ModifyBusyCount(false);
}
}
@ -896,7 +896,7 @@ private:
WorkerRun(JSContext* aCx, WorkerPrivate* aWorkerPrivate) override
{
// This busy count will be matched by the CloseEventRunnable.
return aWorkerPrivate->ModifyBusyCount(aCx, true) &&
return aWorkerPrivate->ModifyBusyCount(true) &&
aWorkerPrivate->Close();
}
};
@ -2788,8 +2788,7 @@ WorkerPrivateParent<Derived>::Close()
template <class Derived>
bool
WorkerPrivateParent<Derived>::ModifyBusyCount(JSContext* /* unused */,
bool aIncrease)
WorkerPrivateParent<Derived>::ModifyBusyCount(bool aIncrease)
{
AssertIsOnParentThread();

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

@ -323,10 +323,8 @@ public:
bool
Close();
// The JSContext argument can be null, since it's not used for anything. It's
// about to go away.
bool
ModifyBusyCount(JSContext* /* unused */, bool aIncrease);
ModifyBusyCount(bool aIncrease);
void
ForgetOverridenLoadGroup(nsCOMPtr<nsILoadGroup>& aLoadGroupOut);

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

@ -84,7 +84,7 @@ WorkerRunnable::PreDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate)
#endif
if (mBehavior == WorkerThreadModifyBusyCount) {
return aWorkerPrivate->ModifyBusyCount(aCx, true);
return aWorkerPrivate->ModifyBusyCount(true);
}
return true;
@ -178,7 +178,7 @@ WorkerRunnable::PostDispatch(JSContext* aCx, WorkerPrivate* aWorkerPrivate,
if (!aDispatchResult) {
if (mBehavior == WorkerThreadModifyBusyCount) {
aWorkerPrivate->ModifyBusyCount(aCx, false);
aWorkerPrivate->ModifyBusyCount(false);
}
if (aCx) {
JS_ReportPendingException(aCx);