diff options
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/ContextComponentHelper.java')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/ContextComponentHelper.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/ContextComponentHelper.java b/packages/SystemUI/src/com/android/systemui/ContextComponentHelper.java index 5fe5792219c3..2cf0f8dafcad 100644 --- a/packages/SystemUI/src/com/android/systemui/ContextComponentHelper.java +++ b/packages/SystemUI/src/com/android/systemui/ContextComponentHelper.java @@ -16,6 +16,7 @@ package com.android.systemui; +import android.app.Activity; import android.app.Service; /** @@ -23,6 +24,9 @@ import android.app.Service; */ public interface ContextComponentHelper { /** Turns a classname into an instance of the class or returns null. */ + Activity resolveActivity(String className); + + /** Turns a classname into an instance of the class or returns null. */ Service resolveService(String className); /** Turns a classname into an instance of the class or returns null. */ |