summaryrefslogtreecommitdiffstats
path: root/src_ui_overrides
diff options
context:
space:
mode:
authorTony <twickham@google.com>2019-03-22 15:44:28 -0500
committerTony <twickham@google.com>2019-03-27 19:45:04 -0500
commite06fef45a43ea2e9ddc426850f12568c7105cdf2 (patch)
treea9f2cb0b72ad2c2082fc3e0bbc099c5ff94d2d26 /src_ui_overrides
parent1787ee9596f0906fe639a577d95090ff92617274 (diff)
downloadandroid_packages_apps_Trebuchet-e06fef45a43ea2e9ddc426850f12568c7105cdf2.tar.gz
android_packages_apps_Trebuchet-e06fef45a43ea2e9ddc426850f12568c7105cdf2.tar.bz2
android_packages_apps_Trebuchet-e06fef45a43ea2e9ddc426850f12568c7105cdf2.zip
Move some classes to packages
Added states/ and touchcontrollers/ packages Change-Id: I8d59c47770c24c9edd1b7ce879e6a80ca8b88c71
Diffstat (limited to 'src_ui_overrides')
-rw-r--r--src_ui_overrides/com/android/launcher3/uioverrides/BackgroundAppState.java26
-rw-r--r--src_ui_overrides/com/android/launcher3/uioverrides/states/AllAppsState.java (renamed from src_ui_overrides/com/android/launcher3/uioverrides/AllAppsState.java)2
-rw-r--r--src_ui_overrides/com/android/launcher3/uioverrides/states/OverviewState.java (renamed from src_ui_overrides/com/android/launcher3/uioverrides/OverviewState.java)2
3 files changed, 2 insertions, 28 deletions
diff --git a/src_ui_overrides/com/android/launcher3/uioverrides/BackgroundAppState.java b/src_ui_overrides/com/android/launcher3/uioverrides/BackgroundAppState.java
deleted file mode 100644
index 9133b07ec..000000000
--- a/src_ui_overrides/com/android/launcher3/uioverrides/BackgroundAppState.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (C) 2018 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.android.launcher3.uioverrides;
-
-/**
- * A dummy background app state
- */
-public class BackgroundAppState extends OverviewState {
-
- public BackgroundAppState(int id) {
- super(id);
- }
-}
diff --git a/src_ui_overrides/com/android/launcher3/uioverrides/AllAppsState.java b/src_ui_overrides/com/android/launcher3/uioverrides/states/AllAppsState.java
index bca335d87..7006d7796 100644
--- a/src_ui_overrides/com/android/launcher3/uioverrides/AllAppsState.java
+++ b/src_ui_overrides/com/android/launcher3/uioverrides/states/AllAppsState.java
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.android.launcher3.uioverrides;
+package com.android.launcher3.uioverrides.states;
import static com.android.launcher3.LauncherAnimUtils.ALL_APPS_TRANSITION_MS;
import static com.android.launcher3.allapps.DiscoveryBounce.HOME_BOUNCE_SEEN;
diff --git a/src_ui_overrides/com/android/launcher3/uioverrides/OverviewState.java b/src_ui_overrides/com/android/launcher3/uioverrides/states/OverviewState.java
index 56e0aa50a..1b1836d4c 100644
--- a/src_ui_overrides/com/android/launcher3/uioverrides/OverviewState.java
+++ b/src_ui_overrides/com/android/launcher3/uioverrides/states/OverviewState.java
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.android.launcher3.uioverrides;
+package com.android.launcher3.uioverrides.states;
import static com.android.launcher3.LauncherAnimUtils.OVERVIEW_TRANSITION_MS;