Fix build bustage from bug 1301266 (r=CLOSED TREE)

This commit is contained in:
David Anderson 2016-09-21 22:56:00 -07:00
parent 4a10c9994a
commit ef0f273f0f

View File

@ -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;
}