Bug 796255 - Alarm doesn’t ring on time if the app is killed and phone is allowed to suspend (part 1). r=fabrice

This commit is contained in:
Gene Lian 2012-10-31 15:52:01 +08:00
parent ea890e70aa
commit 45727b432e

View File

@ -73,6 +73,11 @@ SystemMessageManager.prototype = {
aHandler.handleMessage(wrapped ? aMessage
: ObjectWrapper.wrap(aMessage, this._window));
// Notify the parent process the message is handled.
cpmm.sendAsyncMessage("SystemMessageManager:HandleMessageDone",
{ type: aType,
message: aMessage });
},
mozSetMessageHandler: function sysMessMgr_setMessageHandler(aType, aHandler) {