mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
The bulk of this commit was generated with a script, executed at the top
level of a typical source code checkout. The only non-machine-generated
part was modifying MFBT's moz.build to reflect the new naming.
CLOSED TREE makes big refactorings like this a piece of cake.
# The main substitution.
find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
xargs perl -p -i -e '
s/nsRefPtr\.h/RefPtr\.h/g; # handle includes
s/nsRefPtr ?</RefPtr</g; # handle declarations and variables
'
# Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h.
perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h
# Handle nsRefPtr.h itself, a couple places that define constructors
# from nsRefPtr, and code generators specially. We do this here, rather
# than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename
# things like nsRefPtrHashtable.
perl -p -i -e 's/nsRefPtr/RefPtr/g' \
mfbt/nsRefPtr.h \
xpcom/glue/nsCOMPtr.h \
xpcom/base/OwningNonNull.h \
ipc/ipdl/ipdl/lower.py \
ipc/ipdl/ipdl/builtin.py \
dom/bindings/Codegen.py \
python/lldbutils/lldbutils/utils.py
# In our indiscriminate substitution above, we renamed
# nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up.
find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \
xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g'
if [ -d .git ]; then
git mv mfbt/nsRefPtr.h mfbt/RefPtr.h
else
hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h
fi
--HG--
rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
77 lines
2.5 KiB
C++
77 lines
2.5 KiB
C++
/* -*- 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 "AnimationTimeline.h"
|
|
#include "mozilla/AnimationComparator.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(AnimationTimeline, mWindow,
|
|
mAnimationOrder)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(AnimationTimeline)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(AnimationTimeline)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(AnimationTimeline)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
void
|
|
AnimationTimeline::GetAnimations(AnimationSequence& aAnimations)
|
|
{
|
|
nsCOMPtr<nsPIDOMWindow> window = do_QueryInterface(mWindow);
|
|
if (mWindow) {
|
|
nsIDocument* doc = window->GetDoc();
|
|
if (doc) {
|
|
doc->FlushPendingNotifications(Flush_Style);
|
|
}
|
|
}
|
|
|
|
aAnimations.SetCapacity(mAnimationOrder.Length());
|
|
|
|
for (Animation* animation : mAnimationOrder) {
|
|
|
|
// Skip animations which are no longer relevant or which have been
|
|
// associated with another timeline. These animations will be removed
|
|
// on the next tick.
|
|
if (!animation->IsRelevant() || animation->GetTimeline() != this) {
|
|
continue;
|
|
}
|
|
|
|
// Bug 1174575: Until we implement a suitable PseudoElement interface we
|
|
// don't have anything to return for the |target| attribute of
|
|
// KeyframeEffect(ReadOnly) objects that refer to pseudo-elements.
|
|
// Rather than return some half-baked version of these objects (e.g.
|
|
// we a null effect attribute) we simply don't provide access to animations
|
|
// whose effect refers to a pseudo-element until we can support them
|
|
// properly.
|
|
Element* target;
|
|
nsCSSPseudoElements::Type pseudoType;
|
|
animation->GetEffect()->GetTarget(target, pseudoType);
|
|
if (pseudoType == nsCSSPseudoElements::ePseudo_NotPseudoElement) {
|
|
aAnimations.AppendElement(animation);
|
|
}
|
|
}
|
|
|
|
// Sort animations by priority
|
|
aAnimations.Sort(AnimationPtrComparator<RefPtr<Animation>>());
|
|
}
|
|
|
|
void
|
|
AnimationTimeline::NotifyAnimationUpdated(Animation& aAnimation)
|
|
{
|
|
if (mAnimations.Contains(&aAnimation)) {
|
|
return;
|
|
}
|
|
|
|
mAnimations.PutEntry(&aAnimation);
|
|
mAnimationOrder.AppendElement(&aAnimation);
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|