1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/webapp/TaskKiller.java Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*- 1.5 + * This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +package org.mozilla.gecko.webapp; 1.10 + 1.11 +import android.content.BroadcastReceiver; 1.12 +import android.content.Context; 1.13 +import android.content.Intent; 1.14 +import android.util.Log; 1.15 + 1.16 +/** 1.17 + * This BroadcastReceiver is registered in the AndroidManifest.xml.in file. 1.18 + * 1.19 + * <p>It listens for intents sent by synthesized APKs when the task has been ended. 1.20 + * e.g. when the user has swiped it out of the Recent Apps List.</p> 1.21 + * 1.22 + */ 1.23 +public class TaskKiller extends BroadcastReceiver { 1.24 + 1.25 + private static final String LOGTAG = "GeckoWebappTaskKiller"; 1.26 + 1.27 + @Override 1.28 + public void onReceive(Context context, Intent intent) { 1.29 + String packageName = intent.getStringExtra("packageName"); 1.30 + int slot = Allocator.getInstance(context).getIndexForApp(packageName); 1.31 + if (slot >= 0) { 1.32 + EventListener.killWebappSlot(context, slot); 1.33 + } else { 1.34 + Log.w(LOGTAG, "Asked to kill " + packageName + " but this runtime (" + context.getPackageName() + ") doesn't know about it."); 1.35 + } 1.36 + } 1.37 + 1.38 +}