Bug 1299515 - Include nsContentUtils in TimeoutManager. r?mystor draft
authorAndreas Pehrson <pehrsons@mozilla.com>
Wed, 06 Dec 2017 12:56:32 +0100
changeset 748937 3334f72aed1047852d3970826d0664cc9f4fe4b8
parent 748936 786b9ce7d8df4d6b996feb8f1be6ae6fa7475be7
child 748938 2afb74befd9a0313e34aa66e0599e5b15ae4bd57
push id97281
push userbmo:apehrson@mozilla.com
push dateTue, 30 Jan 2018 18:29:03 +0000
reviewersmystor
bugs1299515
milestone60.0a1
Bug 1299515 - Include nsContentUtils in TimeoutManager. r?mystor The build is failing without this. Assuming I did something in an earlier patch that either removed an nsContentUtils include or changed the order so it's not available here. MozReview-Commit-ID: Lsm8yhRbtFC
dom/base/TimeoutManager.cpp
--- a/dom/base/TimeoutManager.cpp
+++ b/dom/base/TimeoutManager.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 "TimeoutManager.h"
+#include "nsContentUtils.h"
 #include "nsGlobalWindow.h"
 #include "mozilla/Logging.h"
 #include "mozilla/Telemetry.h"
 #include "mozilla/ThrottledEventQueue.h"
 #include "mozilla/TimeStamp.h"
 #include "nsIDocShell.h"
 #include "nsINamed.h"
 #include "nsITimeoutHandler.h"