Bug 1001957 - Fix some review comments I missed in my previous checkin. r=mccr8

This commit is contained in:
Blake Kaplan 2014-07-09 16:30:55 -07:00
parent 2734e41287
commit 5efe2a9455
2 changed files with 5 additions and 3 deletions

View File

@ -3666,7 +3666,7 @@ HandlingUserInputHelper::Destruct()
return NS_OK;
}
}
} // unnamed namespace
NS_IMETHODIMP
nsDOMWindowUtils::SetHandlingUserInput(bool aHandlingUserInput,

View File

@ -1649,8 +1649,10 @@ interface nsIDOMWindowUtils : nsISupports {
AString getOMTAStyle(in nsIDOMElement aElement, in AString aProperty);
/**
* If we are currently handling user input, this informs the event state
* manager. Remember to call destruct() on the return value!
* If aHandlingInput is true, this informs the event state manager that
* we're handling user input. Otherwise, this is a no-op (as by default
* we're not handling user input).
* Remember to call destruct() on the return value!
* See also nsIDOMWindowUtils::isHandlingUserInput.
*/
nsIJSRAIIHelper setHandlingUserInput(in boolean aHandlingInput);