From 872a7b6cf78863a7c17ab75f65a95b22e6bd59d0 Mon Sep 17 00:00:00 2001 From: "roc+%cs.cmu.edu" Date: Wed, 12 Mar 2008 00:59:15 +0000 Subject: [PATCH] Bug 421662. Rename TextRectangle* to ClientRect*. r+sr=sicking,a=damon --- dom/src/base/nsDOMClassInfo.cpp | 26 +++++++++++++------------- dom/src/base/nsDOMClassInfo.h | 10 +++++----- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/dom/src/base/nsDOMClassInfo.cpp b/dom/src/base/nsDOMClassInfo.cpp index 8751722146b..5bb93c18f69 100644 --- a/dom/src/base/nsDOMClassInfo.cpp +++ b/dom/src/base/nsDOMClassInfo.cpp @@ -113,8 +113,8 @@ #include "nsIDOMMediaList.h" #include "nsIDOMChromeWindow.h" #include "nsIDOMConstructor.h" -#include "nsIDOMTextRectangle.h" -#include "nsIDOMTextRectangleList.h" +#include "nsIDOMClientRect.h" +#include "nsIDOMClientRectList.h" // DOM core includes #include "nsDOMError.h" @@ -1185,9 +1185,9 @@ static nsDOMClassInfoData sClassInfoData[] = { NS_DEFINE_CLASSINFO_DATA(XMLHttpRequest, nsDOMGenericSH, DOM_DEFAULT_SCRIPTABLE_FLAGS) - NS_DEFINE_CLASSINFO_DATA(TextRectangle, nsDOMGenericSH, + NS_DEFINE_CLASSINFO_DATA(ClientRect, nsDOMGenericSH, DOM_DEFAULT_SCRIPTABLE_FLAGS) - NS_DEFINE_CLASSINFO_DATA(TextRectangleList, nsTextRectangleListSH, + NS_DEFINE_CLASSINFO_DATA(ClientRectList, nsClientRectListSH, ARRAY_SCRIPTABLE_FLAGS) // Define MOZ_SVG_FOREIGNOBJECT here so that when it gets switched on, @@ -3327,12 +3327,12 @@ nsDOMClassInfo::Init() DOM_CLASSINFO_EVENT_MAP_ENTRIES DOM_CLASSINFO_MAP_END - DOM_CLASSINFO_MAP_BEGIN(TextRectangle, nsIDOMTextRectangle) - DOM_CLASSINFO_MAP_ENTRY(nsIDOMTextRectangle) + DOM_CLASSINFO_MAP_BEGIN(ClientRect, nsIDOMClientRect) + DOM_CLASSINFO_MAP_ENTRY(nsIDOMClientRect) DOM_CLASSINFO_MAP_END - DOM_CLASSINFO_MAP_BEGIN(TextRectangleList, nsIDOMTextRectangleList) - DOM_CLASSINFO_MAP_ENTRY(nsIDOMTextRectangleList) + DOM_CLASSINFO_MAP_BEGIN(ClientRectList, nsIDOMClientRectList) + DOM_CLASSINFO_MAP_ENTRY(nsIDOMClientRectList) DOM_CLASSINFO_MAP_END DOM_CLASSINFO_MAP_BEGIN(FileList, nsIDOMFileList) @@ -9753,16 +9753,16 @@ nsCSSRuleListSH::GetItemAt(nsISupports *aNative, PRUint32 aIndex, return rv; } -// TextRectangleList scriptable helper +// ClientRectList scriptable helper nsresult -nsTextRectangleListSH::GetItemAt(nsISupports *aNative, PRUint32 aIndex, - nsISupports **aResult) +nsClientRectListSH::GetItemAt(nsISupports *aNative, PRUint32 aIndex, + nsISupports **aResult) { - nsCOMPtr list(do_QueryInterface(aNative)); + nsCOMPtr list(do_QueryInterface(aNative)); NS_ENSURE_TRUE(list, NS_ERROR_UNEXPECTED); - nsIDOMTextRectangle *rule = nsnull; // Weak, transfer the ownership over to aResult + nsIDOMClientRect *rule = nsnull; // Weak, transfer the ownership over to aResult nsresult rv = list->Item(aIndex, &rule); *aResult = rule; diff --git a/dom/src/base/nsDOMClassInfo.h b/dom/src/base/nsDOMClassInfo.h index 0d806061d76..484c02ceba9 100644 --- a/dom/src/base/nsDOMClassInfo.h +++ b/dom/src/base/nsDOMClassInfo.h @@ -1331,16 +1331,16 @@ public: } }; -// TextRectangleList helper +// ClientRectList helper -class nsTextRectangleListSH : public nsArraySH +class nsClientRectListSH : public nsArraySH { protected: - nsTextRectangleListSH(nsDOMClassInfoData* aData) : nsArraySH(aData) + nsClientRectListSH(nsDOMClassInfoData* aData) : nsArraySH(aData) { } - virtual ~nsTextRectangleListSH() + virtual ~nsClientRectListSH() { } @@ -1352,7 +1352,7 @@ protected: public: static nsIClassInfo *doCreate(nsDOMClassInfoData* aData) { - return new nsTextRectangleListSH(aData); + return new nsClientRectListSH(aData); } };