# HG changeset patch # User Andreas Pehrson # Date 1512561392 -3600 # Node ID 2cb8db608693a3c4e42983cb518c173491958093 # Parent 822cca49aa1bc9e27fb0d1eb55be48940d8ebda1 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 diff --git a/dom/base/TimeoutManager.cpp b/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"