Bug 1353208 - Sort includes in nsSMILAnimationController.cpp; r=dholbert draft
authorBrian Birtles <birtles@gmail.com>
Thu, 30 Mar 2017 13:10:06 +0900
changeset 555806 ff28e097934a836d656aaaf871d8a0fbfe4aec2b
parent 555805 1b07a560157826d9fa3664e4220465f1b9e8609b
child 555807 b542ffb74068e10204f9ed60176a519a768669e2
push id52357
push userbbirtles@mozilla.com
push dateWed, 05 Apr 2017 01:20:37 +0000
reviewersdholbert
bugs1353208
milestone55.0a1
Bug 1353208 - Sort includes in nsSMILAnimationController.cpp; r=dholbert We will add to these includes later in this patch series so we sort them now so it's clear where to add to. MozReview-Commit-ID: CgqlS3f62nu
dom/smil/nsSMILAnimationController.cpp
--- a/dom/smil/nsSMILAnimationController.cpp
+++ b/dom/smil/nsSMILAnimationController.cpp
@@ -1,28 +1,30 @@
 /* -*- 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 "nsSMILAnimationController.h"
+
+#include <algorithm>
+
+#include "mozilla/AutoRestore.h"
+#include "mozilla/dom/Element.h"
+#include "mozilla/dom/SVGAnimationElement.h"
+#include "nsCSSProps.h"
+#include "nsIDocument.h"
+#include "nsIPresShell.h"
+#include "nsIPresShellInlines.h"
+#include "nsITimer.h"
 #include "nsSMILCompositor.h"
 #include "nsSMILCSSProperty.h"
-#include "nsCSSProps.h"
-#include "nsITimer.h"
-#include "mozilla/dom/Element.h"
-#include "nsIDocument.h"
-#include "mozilla/dom/SVGAnimationElement.h"
 #include "nsSMILTimedElement.h"
-#include <algorithm>
-#include "mozilla/AutoRestore.h"
 #include "RestyleTracker.h"
-#include "nsIPresShell.h"
-#include "nsIPresShellInlines.h"
 
 using namespace mozilla;
 using namespace mozilla::dom;
 
 //----------------------------------------------------------------------
 // nsSMILAnimationController implementation
 
 //----------------------------------------------------------------------