Bug 648935 - Process native events during calls to WaitForNotify in the child process when nested native event loops are detected in the parent. r=bsmedberg.

This commit is contained in:
Jim Mathies
2011-05-18 06:57:08 -05:00
parent 3301ac49db
commit 28d2d690d1
12 changed files with 68 additions and 9 deletions

View File

@@ -1000,11 +1000,22 @@ PluginModuleParent::RecvProcessNativeEventsInRPCCall()
return true;
#else
NS_NOTREACHED(
"PluginInstanceParent::RecvProcessNativeEventsInRPCCall not implemented!");
"PluginModuleParent::RecvProcessNativeEventsInRPCCall not implemented!");
return false;
#endif
}
void
PluginModuleParent::ProcessRemoteNativeEventsInRPCCall()
{
#if defined(OS_WIN)
SendProcessNativeEventsInRPCCall();
return;
#endif
NS_NOTREACHED(
"PluginModuleParent::ProcessRemoteNativeEventsInRPCCall not implemented!");
}
bool
PluginModuleParent::RecvPluginShowWindow(const uint32_t& aWindowId, const bool& aModal,
const int32_t& aX, const int32_t& aY,