From 8bb48e0de190f1e514d45e38be55d0839af0a290 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Mon, 25 Sep 2017 10:55:10 +0100 Subject: [PATCH] Bug 1402824 - Add missing includes in Scheduler.h to fix non-unified build. r=billm nsTArray and EventLoopActivation were used without prior declaration. MozReview-Commit-ID: C05YG6Nzh52 --HG-- extra : rebase_source : 3f78b6a1d73f4d59d3aac4b2da79c27cae404897 --- xpcom/threads/Scheduler.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xpcom/threads/Scheduler.h b/xpcom/threads/Scheduler.h index fe7f63b3bb1c..09445a31024b 100644 --- a/xpcom/threads/Scheduler.h +++ b/xpcom/threads/Scheduler.h @@ -10,7 +10,9 @@ #include "mozilla/Attributes.h" #include "mozilla/EventQueue.h" #include "mozilla/RefPtr.h" +#include "mozilla/ThreadLocal.h" #include "mozilla/UniquePtr.h" +#include "nsTArray.h" // Windows silliness. winbase.h defines an empty no-argument Yield macro. #undef Yield