Bug 1402824 - Include Linkedlist.h in LabeledEventQueue to fix non-unified build. r=billm draft
authorPhilippe Normand <philn@igalia.com>
Mon, 25 Sep 2017 10:51:41 +0100
changeset 670438 545e60bdec4e186a03cb20e342e561e104abcd98
parent 670437 54b56317b2876db2ed679e9f47ffb87fdf83cdd2
child 670439 3f78b6a1d73f4d59d3aac4b2da79c27cae404897
push id81629
push userbmo:cpearce@mozilla.com
push dateTue, 26 Sep 2017 12:03:30 +0000
reviewersbillm
bugs1402824
milestone58.0a1
Bug 1402824 - Include Linkedlist.h in LabeledEventQueue to fix non-unified build. r=billm The LinkedList.h header is requires for the sSchedulerGroups variable declaration. MozReview-Commit-ID: 6T0WPKQER9S
xpcom/threads/LabeledEventQueue.h
--- a/xpcom/threads/LabeledEventQueue.h
+++ b/xpcom/threads/LabeledEventQueue.h
@@ -4,16 +4,17 @@
  * 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/. */
 
 #ifndef mozilla_LabeledEventQueue_h
 #define mozilla_LabeledEventQueue_h
 
 #include <stdint.h>
 #include "mozilla/AbstractEventQueue.h"
+#include "mozilla/LinkedList.h"
 #include "mozilla/Queue.h"
 #include "nsClassHashtable.h"
 #include "nsHashKeys.h"
 
 namespace mozilla {
 
 class SchedulerGroup;