Backed out changeset a4524d7aec4f (bug 857648)

This commit is contained in:
Carsten "Tomcat" Book 2014-07-04 08:23:31 +02:00
parent 88cf063694
commit 02c6251d29
3 changed files with 0 additions and 14 deletions

View File

@ -553,14 +553,6 @@ Exception::GetData() const
return data.forget(); return data.forget();
} }
void
Exception::GetStack(nsAString& aStack, ErrorResult& aRv) const
{
if (mLocation) {
aRv = mLocation->GetFormattedStack(aStack);
}
}
void void
Exception::Stringify(nsString& retval) Exception::Stringify(nsString& retval)
{ {

View File

@ -81,8 +81,6 @@ public:
already_AddRefed<nsISupports> GetData() const; already_AddRefed<nsISupports> GetData() const;
void GetStack(nsAString& aStack, ErrorResult& aRv) const;
void Stringify(nsString& retval); void Stringify(nsString& retval);
// XPCOM factory ctor. // XPCOM factory ctor.

View File

@ -56,10 +56,6 @@ interface ExceptionMembers
// Arbitary data for the implementation. // Arbitary data for the implementation.
readonly attribute nsISupports? data; readonly attribute nsISupports? data;
// Formatted exception stack
[Throws]
readonly attribute DOMString stack;
}; };
[NoInterfaceObject] [NoInterfaceObject]