mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
layout insepctor build bustage when building on windows mobile. r=dbaron, a=beltzner
This commit is contained in:
parent
d410b606ce
commit
6b3a7475bd
@ -43,9 +43,9 @@ interface inISearchProcess;
|
||||
interface inISearchObserver : nsISupports
|
||||
{
|
||||
// result codes which are sent to onSearchEnd
|
||||
const short SUCCESS = 1; // search completed successfully
|
||||
const short INTERRUPTED = 2; // search stopped due to user interruption
|
||||
const short ERROR = 3; // search stopped due to an error
|
||||
const short IN_SUCCESS = 1; // search completed successfully
|
||||
const short IN_INTERRUPTED = 2; // search stopped due to user interruption
|
||||
const short IN_ERROR = 3; // search stopped due to an error
|
||||
|
||||
void onSearchStart(in inISearchProcess aModule);
|
||||
void onSearchResult(in inISearchProcess aModule);
|
||||
|
@ -157,7 +157,7 @@ inCSSValueSearch::SearchAsync(inISearchObserver *aObserver)
|
||||
NS_IMETHODIMP
|
||||
inCSSValueSearch::SearchStop()
|
||||
{
|
||||
KillSearch(inISearchObserver::INTERRUPTED);
|
||||
KillSearch(inISearchObserver::IN_INTERRUPTED);
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user