Bug 1402824 - Include AbstractThread in SystemGroup.cpp to fix non-unified build. r=billm draft
authorPhilippe Normand <philn@igalia.com>
Mon, 25 Sep 2017 10:59:02 +0100
changeset 670441 4f079246b7dd6c378eba97897f74a3c9623540df
parent 670440 15219cba6f5a41c42aa1103d8c958a55ac3b9af0
child 670442 08e207b2024e5ba1be1eb0c55ddbe7b0fc405637
push id81629
push userbmo:cpearce@mozilla.com
push dateTue, 26 Sep 2017 12:03:30 +0000
reviewersbillm
bugs1402824
milestone58.0a1
Bug 1402824 - Include AbstractThread in SystemGroup.cpp to fix non-unified build. r=billm AbstractThread was used without prior declaration. MozReview-Commit-ID: BmP83mmjX3b
xpcom/threads/SystemGroup.cpp
--- a/xpcom/threads/SystemGroup.cpp
+++ b/xpcom/threads/SystemGroup.cpp
@@ -1,16 +1,17 @@
 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 /* 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 "SystemGroup.h"
 
+#include "mozilla/AbstractThread.h"
 #include "mozilla/Move.h"
 #include "mozilla/UniquePtr.h"
 #include "nsINamed.h"
 
 using namespace mozilla;
 
 class SystemGroupImpl final : public SchedulerGroup
 {