Backed out changeset 9b533d393792 (bug 802366)

This commit is contained in:
Justin Lebar 2012-10-30 21:35:48 -04:00
parent f51dafe4d0
commit 51c30f5708

View File

@ -1782,6 +1782,10 @@ this.DOMApplicationRegistry = {
switch (message.name) { switch (message.name) {
case "Webapps:ClearBrowserData": case "Webapps:ClearBrowserData":
this._clearPrivateData(appId, true); this._clearPrivateData(appId, true);
// XXXbent This is a hack until bug 802366 is fixed. Currently all data
// loaded in mozbrowser frames within an app believe that their
// appId is 0.
this._clearPrivateData(0, true);
break; break;
} }
}, },