No Bug - Make saving the screenshot non-blocking. I moved this call as-is from Quit() which had to be blocking since we were going to be exiting as-is. However, now that it is outside immediate death, we can do it async. r=me

This commit is contained in:
Doug Turner 2011-11-03 20:38:31 -07:00
Родитель 58e3acdb2a
Коммит 8fdf340d1e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1160,7 +1160,7 @@ abstract public class GeckoApp
public void onPause()
{
Log.i(LOG_NAME, "pause");
rememberLastScreen(true);
rememberLastScreen(false);
GeckoAppShell.sendEventToGecko(new GeckoEvent(GeckoEvent.ACTIVITY_PAUSING));
// The user is navigating away from this activity, but nothing