Bug 1156268 - Put the 'didRestart' Intent extra in when restarting r=jchen

This commit is contained in:
travis 2015-04-21 10:23:59 -05:00
Родитель 7c51ddf2e5
Коммит 0e393850fd
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -29,6 +29,7 @@ public class Restarter extends Service {
final Intent restartIntent = (Intent)intent.getParcelableExtra(Intent.EXTRA_INTENT);
restartIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
.putExtra("didRestart", true)
.setClassName(getApplicationContext(),
AppConstants.BROWSER_INTENT_CLASS_NAME);
startActivity(restartIntent);