Bug 833392 - Send RP ID within mozChromeEvents; r=jparsons

This commit is contained in:
Fernando Jiménez 2013-01-23 21:10:38 +01:00
parent 7f10745754
commit ac17d44f05

View File

@ -180,7 +180,8 @@ let Pipe = {
let detail = {
type: kReceivedIdentityAssertion,
showUI: aGaiaOptions.showUI || false,
id: kReceivedIdentityAssertion + "-" + uuid
id: kReceivedIdentityAssertion + "-" + uuid,
requestId: aRpOptions.id
};
log('telling gaia to close the dialog');
// tell gaia to close the dialog
@ -248,7 +249,8 @@ let Pipe = {
let detail = {
type: kOpenIdentityDialog,
showUI: aGaiaOptions.showUI || false,
id: kOpenIdentityDialog + "-" + uuid
id: kOpenIdentityDialog + "-" + uuid,
requestId: aRpOptions.id
};
GaiaInterface.sendChromeEvent(detail);