summaryrefslogtreecommitdiffstats
path: root/dom/base/nsIAnimationObserver.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/base/nsIAnimationObserver.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/base/nsIAnimationObserver.h')
-rw-r--r--dom/base/nsIAnimationObserver.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/dom/base/nsIAnimationObserver.h b/dom/base/nsIAnimationObserver.h
new file mode 100644
index 000000000..e39616b11
--- /dev/null
+++ b/dom/base/nsIAnimationObserver.h
@@ -0,0 +1,67 @@
+/* -*- 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/. */
+#ifndef nsIAnimationObserver_h___
+#define nsIAnimationObserver_h___
+
+#include "nsIMutationObserver.h"
+
+namespace mozilla {
+namespace dom {
+class Animation;
+} // namespace dom
+} // namespace mozilla
+
+#define NS_IANIMATION_OBSERVER_IID \
+{ 0xed025fc7, 0xdeda, 0x48b9, \
+ { 0x9c, 0x35, 0xf2, 0xb6, 0x1e, 0xeb, 0xd0, 0x8d } }
+
+class nsIAnimationObserver : public nsIMutationObserver
+{
+public:
+ NS_DECLARE_STATIC_IID_ACCESSOR(NS_IANIMATION_OBSERVER_IID)
+
+ virtual void AnimationAdded(mozilla::dom::Animation* aAnimation) = 0;
+ virtual void AnimationChanged(mozilla::dom::Animation* aAnimation) = 0;
+ virtual void AnimationRemoved(mozilla::dom::Animation* aAnimation) = 0;
+};
+
+NS_DEFINE_STATIC_IID_ACCESSOR(nsIAnimationObserver, NS_IANIMATION_OBSERVER_IID)
+
+#define NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONADDED \
+ virtual void AnimationAdded(mozilla::dom::Animation* aAnimation) \
+ override;
+
+#define NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONCHANGED \
+ virtual void AnimationChanged(mozilla::dom::Animation* aAnimation) \
+ override;
+
+#define NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONREMOVED \
+ virtual void AnimationRemoved(mozilla::dom::Animation* aAnimation) \
+ override;
+
+#define NS_IMPL_NSIANIMATIONOBSERVER_STUB(class_) \
+void \
+class_::AnimationAdded(mozilla::dom::Animation* aAnimation) \
+{ \
+} \
+void \
+class_::AnimationChanged(mozilla::dom::Animation* aAnimation) \
+{ \
+} \
+void \
+class_::AnimationRemoved(mozilla::dom::Animation* aAnimation) \
+{ \
+} \
+NS_IMPL_NSIMUTATIONOBSERVER_CORE_STUB(class_) \
+NS_IMPL_NSIMUTATIONOBSERVER_CONTENT(class_)
+
+#define NS_DECL_NSIANIMATIONOBSERVER \
+ NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONADDED \
+ NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONCHANGED \
+ NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONREMOVED \
+ NS_DECL_NSIMUTATIONOBSERVER
+
+#endif // nsIAnimationObserver_h___