mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
stub out IsSynthetic API
This commit is contained in:
parent
8bb1a77086
commit
e34cb470d5
@ -186,6 +186,13 @@ nsresult nsHTMLContent::QueryInterface(const nsIID& aIID,
|
||||
return NS_NOINTERFACE;
|
||||
}
|
||||
|
||||
NS_METHOD
|
||||
nsHTMLContent::IsSynthetic(PRBool& aResult)
|
||||
{
|
||||
aResult = PR_FALSE;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
void nsHTMLContent::Compact()
|
||||
{
|
||||
}
|
||||
|
@ -68,6 +68,8 @@ public:
|
||||
virtual PRBool AppendChild(nsIContent* aKid);
|
||||
virtual PRBool RemoveChildAt(PRInt32 aIndex);
|
||||
|
||||
NS_IMETHOD IsSynthetic(PRBool& aResult);
|
||||
|
||||
virtual void Compact();
|
||||
|
||||
virtual void SetAttribute(const nsString& aName, const nsString& aValue);
|
||||
|
Loading…
Reference in New Issue
Block a user