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

Merge commit '68925c535932b7cbb8aafb4f981f23ef2887a1c4'

* commit '68925c535932b7cbb8aafb4f981f23ef2887a1c4':
  Make the loader thread a Looper and move the package manager
This commit is contained in:
Joe Onorato 2010-06-23 10:18:29 -07:00 committed by Android Git Automerger
commit ff68ed0595
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