summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/launcher3/CommonAppTypeParser.java19
-rw-r--r--src/com/android/launcher3/model/GridSizeMigrationTask.java1
-rw-r--r--tests/src/com/android/launcher3/model/GridSizeMigrationTaskTest.java5
3 files changed, 14 insertions, 11 deletions
diff --git a/src/com/android/launcher3/CommonAppTypeParser.java b/src/com/android/launcher3/CommonAppTypeParser.java
index a4a92b6bf..c2bd8832c 100644
--- a/src/com/android/launcher3/CommonAppTypeParser.java
+++ b/src/com/android/launcher3/CommonAppTypeParser.java
@@ -25,7 +25,6 @@ import android.util.Log;
import com.android.launcher3.AutoInstallsLayout.LayoutParserCallback;
import com.android.launcher3.LauncherSettings.Favorites;
-import com.android.launcher3.backup.nano.BackupProtos.Favorite;
import com.android.launcher3.util.Thunk;
import org.xmlpull.v1.XmlPullParserException;
@@ -43,6 +42,12 @@ public class CommonAppTypeParser implements LayoutParserCallback {
private static final int RESTORE_FLAG_BIT_SHIFT = 4;
+ public static final int TARGET_PHONE = 1;
+ public static final int TARGET_MESSENGER = 2;
+ public static final int TARGET_EMAIL = 3;
+ public static final int TARGET_BROWSER = 4;
+ public static final int TARGET_GALLERY = 5;
+ public static final int TARGET_CAMERA = 6;
private final long mItemId;
@Thunk final int mResId;
@@ -118,22 +123,22 @@ public class CommonAppTypeParser implements LayoutParserCallback {
public static int getResourceForItemType(int type) {
switch (type) {
- case Favorite.TARGET_PHONE:
+ case TARGET_PHONE:
return R.xml.app_target_phone;
- case Favorite.TARGET_MESSENGER:
+ case TARGET_MESSENGER:
return R.xml.app_target_messenger;
- case Favorite.TARGET_EMAIL:
+ case TARGET_EMAIL:
return R.xml.app_target_email;
- case Favorite.TARGET_BROWSER:
+ case TARGET_BROWSER:
return R.xml.app_target_browser;
- case Favorite.TARGET_GALLERY:
+ case TARGET_GALLERY:
return R.xml.app_target_gallery;
- case Favorite.TARGET_CAMERA:
+ case TARGET_CAMERA:
return R.xml.app_target_camera;
default:
diff --git a/src/com/android/launcher3/model/GridSizeMigrationTask.java b/src/com/android/launcher3/model/GridSizeMigrationTask.java
index 5941af888..7287ced7d 100644
--- a/src/com/android/launcher3/model/GridSizeMigrationTask.java
+++ b/src/com/android/launcher3/model/GridSizeMigrationTask.java
@@ -24,7 +24,6 @@ import com.android.launcher3.LauncherSettings;
import com.android.launcher3.LauncherSettings.Favorites;
import com.android.launcher3.Utilities;
import com.android.launcher3.Workspace;
-import com.android.launcher3.backup.nano.BackupProtos;
import com.android.launcher3.compat.AppWidgetManagerCompat;
import com.android.launcher3.compat.PackageInstallerCompat;
import com.android.launcher3.config.FeatureFlags;
diff --git a/tests/src/com/android/launcher3/model/GridSizeMigrationTaskTest.java b/tests/src/com/android/launcher3/model/GridSizeMigrationTaskTest.java
index 3cef9e0f6..4dae42f7e 100644
--- a/tests/src/com/android/launcher3/model/GridSizeMigrationTaskTest.java
+++ b/tests/src/com/android/launcher3/model/GridSizeMigrationTaskTest.java
@@ -15,7 +15,6 @@ import com.android.launcher3.config.ProviderConfig;
import com.android.launcher3.util.TestLauncherProvider;
import java.util.ArrayList;
-import java.util.HashMap;
import java.util.HashSet;
/**
@@ -231,7 +230,7 @@ public class GridSizeMigrationTaskTest extends ProviderTestCase2<TestLauncherPro
{ 5, 2, 7, -1},
}}, 0);
- new GridSizeMigrationTask(getMockContext(), mIdp, mValidPackages, new HashMap<String, Point>(),
+ new GridSizeMigrationTask(getMockContext(), mIdp, mValidPackages,
new Point(4, 4), new Point(3, 4)).migrateWorkspace();
// Items in the second column of the first screen should get placed on a new screen.
@@ -254,7 +253,7 @@ public class GridSizeMigrationTaskTest extends ProviderTestCase2<TestLauncherPro
{ 5, 6, 7, -1},
}}, 0);
- new GridSizeMigrationTask(getMockContext(), mIdp, mValidPackages, new HashMap<String, Point>(),
+ new GridSizeMigrationTask(getMockContext(), mIdp, mValidPackages,
new Point(4, 4), new Point(3, 3)).migrateWorkspace();
// Items in the second column of the first screen should get placed on a new screen.