diff options
| author | Ben Komalo <benkomalo@google.com> | 2011-10-04 14:27:24 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-10-04 14:27:24 -0700 |
| commit | a1aebdf787443413ba870fc9203639405a5ff7bf (patch) | |
| tree | 013ce590fe4bec96803c737c6092a18bc4b724c7 /core/java | |
| parent | cac15eb21cab68e5b76fe06f9aff273978c92054 (diff) | |
| parent | 51ea88a86e5cf418e956b199de35658f0a5fd623 (diff) | |
| download | frameworks_base-a1aebdf787443413ba870fc9203639405a5ff7bf.zip frameworks_base-a1aebdf787443413ba870fc9203639405a5ff7bf.tar.gz frameworks_base-a1aebdf787443413ba870fc9203639405a5ff7bf.tar.bz2 | |
Merge "New PIN unlock screen layout."
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/com/android/internal/widget/PasswordEntryKeyboardHelper.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/java/com/android/internal/widget/PasswordEntryKeyboardHelper.java b/core/java/com/android/internal/widget/PasswordEntryKeyboardHelper.java index 366b983..01df48a 100644 --- a/core/java/com/android/internal/widget/PasswordEntryKeyboardHelper.java +++ b/core/java/com/android/internal/widget/PasswordEntryKeyboardHelper.java @@ -48,11 +48,11 @@ public class PasswordEntryKeyboardHelper implements OnKeyboardActionListener { private PasswordEntryKeyboard mSymbolsKeyboard; private PasswordEntryKeyboard mSymbolsKeyboardShifted; private PasswordEntryKeyboard mNumericKeyboard; - private Context mContext; - private View mTargetView; - private KeyboardView mKeyboardView; + private final Context mContext; + private final View mTargetView; + private final KeyboardView mKeyboardView; private long[] mVibratePattern; - private Vibrator mVibrator; + private final Vibrator mVibrator; public PasswordEntryKeyboardHelper(Context context, KeyboardView keyboardView, View targetView) { this(context, keyboardView, targetView, true); @@ -228,7 +228,7 @@ public class PasswordEntryKeyboardHelper implements OnKeyboardActionListener { } } - private void handleBackspace() { + public void handleBackspace() { sendDownUpKeyEvents(KeyEvent.KEYCODE_DEL); } |
