diff options
author | Jim Miller <jaggies@google.com> | 2014-11-06 18:05:59 -0800 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2014-11-06 18:05:59 -0800 |
commit | a237a314845d4e606a74a3135f78efa51006cc0f (patch) | |
tree | 714f8008f8064ff57e02e2606eedd86d078afec3 | |
parent | 3ed9f2f903a8e6c38ca9f2ce3819ac063281a020 (diff) | |
download | frameworks_base-a237a314845d4e606a74a3135f78efa51006cc0f.zip frameworks_base-a237a314845d4e606a74a3135f78efa51006cc0f.tar.gz frameworks_base-a237a314845d4e606a74a3135f78efa51006cc0f.tar.bz2 |
Fix build
Change-Id: I1c4054f0e613f19a39c4bc32cc90bdec3b21dca9
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/AlternateRecentsComponent.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/AlternateRecentsComponent.java b/packages/SystemUI/src/com/android/systemui/recents/AlternateRecentsComponent.java index 840b852..2bfdb69 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/AlternateRecentsComponent.java +++ b/packages/SystemUI/src/com/android/systemui/recents/AlternateRecentsComponent.java @@ -16,11 +16,13 @@ package com.android.systemui.recents; +import android.app.Activity; import android.app.ActivityManager; import android.app.ActivityOptions; import android.appwidget.AppWidgetHost; import android.appwidget.AppWidgetProviderInfo; import android.content.ActivityNotFoundException; +import android.content.BroadcastReceiver; import android.content.ComponentName; import android.content.Context; import android.content.Intent; @@ -29,10 +31,12 @@ import android.content.res.Resources; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Rect; +import android.os.Handler; import android.os.UserHandle; import android.util.Pair; import android.view.LayoutInflater; import android.view.View; + import com.android.systemui.R; import com.android.systemui.RecentsComponent; import com.android.systemui.recents.misc.Console; |