Bug 456388 - Remove PR_STATIC_CALLBACK and PR_CALLBACK(_DECL) from the tree; r+sr=brendan
This commit is contained in:
@@ -5072,8 +5072,7 @@ ParseSelectorList(nsINode* aNode,
|
||||
* the callbacks returns false, the iteration should be stopped.
|
||||
*/
|
||||
typedef PRBool
|
||||
(* PR_CALLBACK ElementMatchedCallback)(nsIContent* aMatchingElement,
|
||||
void* aClosure);
|
||||
(* ElementMatchedCallback)(nsIContent* aMatchingElement, void* aClosure);
|
||||
|
||||
// returning false means stop iteration
|
||||
static PRBool
|
||||
@@ -5169,7 +5168,7 @@ TryMatchingElementsInSubtree(nsINode* aRoot,
|
||||
return continueIteration;
|
||||
}
|
||||
|
||||
PR_STATIC_CALLBACK(PRBool)
|
||||
static PRBool
|
||||
FindFirstMatchingElement(nsIContent* aMatchingElement,
|
||||
void* aClosure)
|
||||
{
|
||||
@@ -5205,7 +5204,7 @@ nsGenericElement::doQuerySelector(nsINode* aRoot, const nsAString& aSelector,
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
PR_STATIC_CALLBACK(PRBool)
|
||||
static PRBool
|
||||
AppendAllMatchingElements(nsIContent* aMatchingElement,
|
||||
void* aClosure)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user