mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
01583602a9
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
121 lines
4.4 KiB
C++
121 lines
4.4 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/. */
|
|
|
|
#ifndef MOZILLA_DOMSVGSTRINGLIST_H__
|
|
#define MOZILLA_DOMSVGSTRINGLIST_H__
|
|
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsSVGElement.h"
|
|
#include "mozilla/Attributes.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
|
class SVGStringList;
|
|
|
|
/**
|
|
* Class DOMSVGStringList
|
|
*
|
|
* This class is used to create the DOM tearoff objects that wrap internal
|
|
* SVGPathData objects.
|
|
*
|
|
* See the architecture comment in DOMSVGAnimatedLengthList.h first (that's
|
|
* LENGTH list), then continue reading the remainder of this comment.
|
|
*
|
|
* The architecture of this class is similar to that of DOMSVGLengthList
|
|
* except for two important aspects:
|
|
*
|
|
* First, since there is no nsIDOMSVGAnimatedStringList interface in SVG, we
|
|
* have no parent DOMSVGAnimatedStringList (unlike DOMSVGLengthList which has
|
|
* a parent DOMSVGAnimatedLengthList class). As a consequence, much of the
|
|
* logic that would otherwise be in DOMSVGAnimatedStringList (and is in
|
|
* DOMSVGAnimatedLengthList) is contained in this class.
|
|
*
|
|
* Second, since there is no nsIDOMSVGString interface in SVG, we have no
|
|
* DOMSVGString items to maintain. As far as script is concerned, objects
|
|
* of this class contain a list of strings, not a list of mutable objects
|
|
* like the other SVG list types. As a result, unlike the other SVG list
|
|
* types, this class does not create its items lazily on demand and store
|
|
* them so it can return the same objects each time. It simply returns a new
|
|
* string each time any given item is requested.
|
|
*/
|
|
class DOMSVGStringList final : public nsISupports
|
|
, public nsWrapperCache
|
|
{
|
|
friend class AutoChangeStringListNotifier;
|
|
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(DOMSVGStringList)
|
|
|
|
nsSVGElement* GetParentObject() const
|
|
{
|
|
return mElement;
|
|
}
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
uint32_t NumberOfItems() const;
|
|
uint32_t Length() const;
|
|
void Clear();
|
|
void Initialize(const nsAString& aNewItem, nsAString& aRetval,
|
|
ErrorResult& aRv);
|
|
void GetItem(uint32_t aIndex, nsAString& aRetval, ErrorResult& aRv);
|
|
void IndexedGetter(uint32_t aIndex, bool& aFound, nsAString& aRetval);
|
|
void InsertItemBefore(const nsAString& aNewItem, uint32_t aIndex,
|
|
nsAString& aRetval, ErrorResult& aRv);
|
|
void ReplaceItem(const nsAString& aNewItem, uint32_t aIndex,
|
|
nsAString& aRetval, ErrorResult& aRv);
|
|
void RemoveItem(uint32_t aIndex, nsAString& aRetval, ErrorResult& aRv);
|
|
void AppendItem(const nsAString& aNewItem, nsAString& aRetval,
|
|
ErrorResult& aRv);
|
|
|
|
/**
|
|
* Factory method to create and return a DOMSVGStringList wrapper
|
|
* for a given internal SVGStringList object. The factory takes care
|
|
* of caching the object that it returns so that the same object can be
|
|
* returned for the given SVGStringList each time it is requested.
|
|
* The cached object is only removed from the cache when it is destroyed due
|
|
* to there being no more references to it. If that happens, any subsequent
|
|
* call requesting the DOM wrapper for the SVGStringList will naturally
|
|
* result in a new DOMSVGStringList being returned.
|
|
*/
|
|
static already_AddRefed<DOMSVGStringList>
|
|
GetDOMWrapper(SVGStringList *aList,
|
|
nsSVGElement *aElement,
|
|
bool aIsConditionalProcessingAttribute,
|
|
uint8_t aAttrEnum);
|
|
|
|
private:
|
|
/**
|
|
* Only our static GetDOMWrapper() factory method may create objects of our
|
|
* type.
|
|
*/
|
|
DOMSVGStringList(nsSVGElement *aElement,
|
|
bool aIsConditionalProcessingAttribute, uint8_t aAttrEnum)
|
|
: mElement(aElement)
|
|
, mAttrEnum(aAttrEnum)
|
|
, mIsConditionalProcessingAttribute(aIsConditionalProcessingAttribute)
|
|
{
|
|
}
|
|
|
|
~DOMSVGStringList();
|
|
|
|
SVGStringList &InternalList() const;
|
|
|
|
// Strong ref to our element to keep it alive.
|
|
RefPtr<nsSVGElement> mElement;
|
|
|
|
uint8_t mAttrEnum;
|
|
|
|
bool mIsConditionalProcessingAttribute;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // MOZILLA_DOMSVGSTRINGLIST_H__
|