Bug 1367166 - Add MOZ_PHOTON_ANIMATIONS to AppConstants. r?jaws draft
authorSam Foster <sfoster@mozilla.com>
Wed, 24 May 2017 10:57:31 -0700
changeset 583824 ccc0260484576c0965bcd112f1311f207e26404f
parent 583779 37d777d872002597198405f22eefa9199e5103af
child 630223 0f5061b9d9f5089506e7bfabbb4ed7bfa23cc3ef
push id60570
push userbmo:sfoster@mozilla.com
push dateWed, 24 May 2017 17:59:16 +0000
reviewersjaws
bugs1367166
milestone55.0a1
Bug 1367166 - Add MOZ_PHOTON_ANIMATIONS to AppConstants. r?jaws MozReview-Commit-ID: 3l88gd6KmOO
toolkit/modules/AppConstants.jsm
--- a/toolkit/modules/AppConstants.jsm
+++ b/toolkit/modules/AppConstants.jsm
@@ -349,9 +349,17 @@ this.AppConstants = Object.freeze({
 #endif
 
   HAVE_SHELL_SERVICE:
 #ifdef HAVE_SHELL_SERVICE
     true,
 #else
     false,
 #endif
+
+  MOZ_PHOTON_ANIMATIONS:
+#ifdef MOZ_PHOTON_ANIMATIONS
+    true,
+#else
+    false,
+#endif
+
 });