Bug 1402824 - Include nsIRunnable in EventQueue.cpp to fix non-unified build. r=billm draft
authorPhilippe Normand <philn@igalia.com>
Mon, 25 Sep 2017 10:43:30 +0100
changeset 670435 06c71dfada5e26725d7771284a9f400bf7b5fdd8
parent 670434 57bbdb4f0d7ae0789dfc095fd4b6c99ad780f1ad
child 670436 671ffe885ae7220bff746d433f55196519d05b8c
push id81629
push userbmo:cpearce@mozilla.com
push dateTue, 26 Sep 2017 12:03:30 +0000
reviewersbillm
bugs1402824
milestone58.0a1
Bug 1402824 - Include nsIRunnable in EventQueue.cpp to fix non-unified build. r=billm nsIRunnable was used without prior declaration. MozReview-Commit-ID: CVEkaw6xBsC
xpcom/threads/EventQueue.cpp
--- a/xpcom/threads/EventQueue.cpp
+++ b/xpcom/threads/EventQueue.cpp
@@ -1,15 +1,16 @@
 /* -*- 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 "mozilla/EventQueue.h"
+#include "nsIRunnable.h"
 
 using namespace mozilla;
 
 EventQueue::EventQueue()
 {
 }
 
 void