mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
883849ee32
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
67 lines
3.0 KiB
C++
67 lines
3.0 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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 AnimationPlayer;
|
|
}
|
|
}
|
|
|
|
#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::AnimationPlayer* aPlayer) = 0;
|
|
virtual void AnimationChanged(mozilla::dom::AnimationPlayer* aPlayer) = 0;
|
|
virtual void AnimationRemoved(mozilla::dom::AnimationPlayer* aPlayer) = 0;
|
|
};
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAnimationObserver, NS_IANIMATION_OBSERVER_IID)
|
|
|
|
#define NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONADDED \
|
|
virtual void AnimationAdded(mozilla::dom::AnimationPlayer* aPlayer) \
|
|
override;
|
|
|
|
#define NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONCHANGED \
|
|
virtual void AnimationChanged(mozilla::dom::AnimationPlayer* aPlayer) \
|
|
override;
|
|
|
|
#define NS_DECL_NSIANIMATIONOBSERVER_ANIMATIONREMOVED \
|
|
virtual void AnimationRemoved(mozilla::dom::AnimationPlayer* aPlayer) \
|
|
override;
|
|
|
|
#define NS_IMPL_NSIANIMATIONOBSERVER_STUB(class_) \
|
|
void \
|
|
class_::AnimationAdded(mozilla::dom::AnimationPlayer* aPlayer) \
|
|
{ \
|
|
} \
|
|
void \
|
|
class_::AnimationChanged(mozilla::dom::AnimationPlayer* aPlayer) \
|
|
{ \
|
|
} \
|
|
void \
|
|
class_::AnimationRemoved(mozilla::dom::AnimationPlayer* aPlayer) \
|
|
{ \
|
|
} \
|
|
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___
|