Bug 741275 - Add back support for making a thumbnail after pageload. r=mfinkle

This commit is contained in:
Geoff Brown 2012-04-03 20:08:28 -04:00
Родитель 932c8abcc5
Коммит 7d94c63963
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -1198,6 +1198,11 @@ abstract public class GeckoApp
Tabs.getInstance().notifyListeners(tab, Tabs.TabEvents.STOP); Tabs.getInstance().notifyListeners(tab, Tabs.TabEvents.STOP);
} }
}); });
GeckoAppShell.getHandler().postDelayed(new Runnable() {
public void run() {
getAndProcessThumbnailForTab(tab);
}
}, 500);
} }
void handleShowToast(final String message, final String duration) { void handleShowToast(final String message, final String duration) {