зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1742469 - Part 7: Resolve bugprone-argument-comment warnings r=smaug
Differential Revision: https://phabricator.services.mozilla.com/D131935
This commit is contained in:
Родитель
37ff03a3eb
Коммит
4998d9ed28
|
@ -1942,7 +1942,7 @@ void WorkerPrivate::GarbageCollect(bool aShrinking) {
|
|||
AssertIsOnParentThread();
|
||||
|
||||
RefPtr<GarbageCollectRunnable> runnable = new GarbageCollectRunnable(
|
||||
this, aShrinking, /* collectChildren = */ true);
|
||||
this, aShrinking, /* aCollectChildren = */ true);
|
||||
if (!runnable->Dispatch()) {
|
||||
NS_WARNING("Failed to GC worker!");
|
||||
}
|
||||
|
@ -1952,7 +1952,7 @@ void WorkerPrivate::CycleCollect() {
|
|||
AssertIsOnParentThread();
|
||||
|
||||
RefPtr<CycleCollectRunnable> runnable =
|
||||
new CycleCollectRunnable(this, /* collectChildren = */ true);
|
||||
new CycleCollectRunnable(this, /* aCollectChildren = */ true);
|
||||
if (!runnable->Dispatch()) {
|
||||
NS_WARNING("Failed to CC worker!");
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче