mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Fix build bustage from bug 1301266 (r=CLOSED TREE)
This commit is contained in:
parent
4a10c9994a
commit
ef0f273f0f
@ -10,6 +10,7 @@
|
||||
#include "MainThreadUtils.h" // for NS_IsMainThread
|
||||
#include "mozilla/Assertions.h" // for MOZ_ASSERT
|
||||
#include "mozilla/ClearOnShutdown.h" // for ClearOnShutdown
|
||||
#include "mozilla/Unused.h"
|
||||
#include "mozilla/dom/CheckerboardReportServiceBinding.h" // for dom::CheckerboardReports
|
||||
#include "mozilla/gfx/GPUParent.h"
|
||||
#include "nsContentUtils.h" // for nsContentUtils
|
||||
@ -50,7 +51,7 @@ CheckerboardEventStorage::Report(uint32_t aSeverity, const std::string& aLog)
|
||||
if (XRE_IsGPUProcess()) {
|
||||
if (gfx::GPUParent* gpu = gfx::GPUParent::GetSingleton()) {
|
||||
nsCString log(aLog.c_str());
|
||||
gpu->SendReportCheckerboard(aSeverity, log);
|
||||
Unused << gpu->SendReportCheckerboard(aSeverity, log);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user