2016-11-16 01:35:36 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "GMPCrashHelper.h"
|
|
|
|
#include "runnable_utils.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2017-08-08 11:36:01 +03:00
|
|
|
#include "SystemGroup.h"
|
2016-11-16 01:35:36 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(GMPCrashHelper)
|
|
|
|
NS_IMPL_RELEASE_WITH_DESTROY(GMPCrashHelper, Destroy())
|
|
|
|
|
|
|
|
void
|
|
|
|
GMPCrashHelper::Destroy()
|
|
|
|
{
|
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
delete this;
|
|
|
|
} else {
|
|
|
|
// Don't addref, as then we'd end up releasing after the detele runs!
|
2017-07-26 11:13:35 +03:00
|
|
|
SystemGroup::Dispatch(TaskCategory::Other,
|
2017-06-12 22:34:10 +03:00
|
|
|
NewNonOwningRunnableMethod("GMPCrashHelper::Destroy",
|
|
|
|
this,
|
|
|
|
&GMPCrashHelper::Destroy));
|
2016-11-16 01:35:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|