Bug 672511 - Morph nsIAccessNode::uniqueId, r=surkov

This commit is contained in:
Atul Aggarwal 2011-11-30 14:18:45 +05:30
parent 2768e1cac2
commit 076203ae3f
2 changed files with 1 additions and 17 deletions

View File

@ -54,7 +54,7 @@ interface nsIDOMCSSPrimitiveValue;
* If the DOM node for this access node is "accessible",
* then a QueryInterface to nsIAccessible will succeed.
*/
[scriptable, uuid(bbbd5a68-bad2-48c1-ab09-beb6c34f03d9)]
[scriptable, uuid(08bb2c50-1b30-11e1-bddb-0800200c9a66)]
interface nsIAccessNode : nsISupports
{
/**
@ -99,12 +99,6 @@ interface nsIAccessNode : nsISupports
*/
void scrollToPoint(in unsigned long aCoordinateType, in long aX, in long aY);
/**
* A unique ID calculated for this DOM node, for the
* purposes of caching and referencing this object.
*/
[noscript] readonly attribute voidPtr uniqueID;
/**
* Retrieve the computed style value for this DOM node, if it is a DOM element.
* Note: the meanings of width, height and other size measurements depend

View File

@ -149,16 +149,6 @@ nsAccessNode::Shutdown()
mWeakShell = nsnull;
}
// nsIAccessNode
NS_IMETHODIMP
nsAccessNode::GetUniqueID(void **aUniqueID)
{
NS_ENSURE_ARG_POINTER(aUniqueID);
*aUniqueID = UniqueID();
return NS_OK;
}
nsApplicationAccessible*
nsAccessNode::GetApplicationAccessible()
{