Merge mozilla-central into birch

This commit is contained in:
Ehsan Akhgari 2012-04-18 15:43:17 -04:00
Родитель 0f2c58ae32 fbe103df0e
Коммит c113d82820
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -607,6 +607,9 @@ PopupNotifications.prototype = {
}
}, this);
while (this.panel.lastChild)
this.panel.removeChild(this.panel.lastChild);
this._update();
},

Просмотреть файл

@ -513,7 +513,7 @@ void TableTicker::doBacktrace(ThreadProfile &aProfile, TickSample* aSample)
nsresult rv = NS_StackWalk(StackWalkCallback, 0, &array, thread);
#endif
if (NS_SUCCEEDED(rv)) {
aProfile.addTag(ProfileEntry('s', "(root)", 0));
aProfile.addTag(ProfileEntry('s', "(root)"));
for (size_t i = array.count; i > 0; --i) {
aProfile.addTag(ProfileEntry('l', (const char*)array.array[i - 1]));