Bug 1315874 - Sort includes in nsSMILAnimationController.cpp; r?dholbert draft
authorBrian Birtles <birtles@gmail.com>
Thu, 30 Mar 2017 13:10:06 +0900
changeset 554898 6b364f2b5589feef9ff9b4a128967dd235e09abd
parent 554897 7f43080e42306cf0ac96d9b54cbba149cb25a8f1
child 554899 7ad25b4491c871e97b87ba78628cc750f51fa1b9
push id52084
push userbbirtles@mozilla.com
push dateMon, 03 Apr 2017 07:50:01 +0000
reviewersdholbert
bugs1315874
milestone55.0a1
Bug 1315874 - 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
 
 //----------------------------------------------------------------------