summaryrefslogtreecommitdiff
path: root/packages/SystemUI/src/com/android/keyguard/KeyguardSecurityView.java
diff options
context:
space:
mode:
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardSecurityView.java')
-rw-r--r--packages/SystemUI/src/com/android/keyguard/KeyguardSecurityView.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardSecurityView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardSecurityView.java
index 6e445ff0e26d..1a09364f564c 100644
--- a/packages/SystemUI/src/com/android/keyguard/KeyguardSecurityView.java
+++ b/packages/SystemUI/src/com/android/keyguard/KeyguardSecurityView.java
@@ -16,6 +16,7 @@
package com.android.keyguard;
import com.android.internal.widget.LockPatternUtils;
+import android.content.res.ColorStateList;
public interface KeyguardSecurityView {
static public final int SCREEN_ON = 1;
@@ -104,9 +105,9 @@ public interface KeyguardSecurityView {
* Show a message on the security view with a specified color
*
* @param message the message to show
- * @param color the color to use
+ * @param colorState the color to use
*/
- void showMessage(CharSequence message, int color);
+ void showMessage(CharSequence message, ColorStateList colorState);
/**
* Instruct the view to show usability hints, if any.