Merge "Make the loader thread a Looper and move the package manager updates into that thread as well." into gingerbread

This commit is contained in:
Joe Onorato 2010-06-21 16:06:50 -07:00 committed by Android (Google) Code Review
commit 68925c5359
2 changed files with 832 additions and 845 deletions

View File

@ -2281,9 +2281,11 @@ public final class Launcher extends Activity
*
* Implementation of the method from LauncherModel.Callbacks.
*/
public void bindAppsRemoved(ArrayList<ApplicationInfo> apps) {
public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
removeDialog(DIALOG_CREATE_SHORTCUT);
mWorkspace.removeItems(apps);
if (permanent) {
mWorkspace.removeItems(apps);
}
mAllAppsGrid.removeApps(apps);
}

File diff suppressed because it is too large Load Diff