diff options
author | 2014-08-12 22:28:53 +0900 | |
---|---|---|
committer | 2014-08-13 08:04:54 +0000 | |
commit | a696c924776cea07ec52ed9448dd16d813eddd72 (patch) | |
tree | 04c3722e26589e5d0f4bc714707a619943e10cee /java/src/com/android/inputmethod/latin/SpecialKeyDetector.java | |
parent | 78cff10f8d317641dd3531cce04e74502be8ad44 (diff) | |
download | latinime-a696c924776cea07ec52ed9448dd16d813eddd72.tar.gz latinime-a696c924776cea07ec52ed9448dd16d813eddd72.tar.xz latinime-a696c924776cea07ec52ed9448dd16d813eddd72.zip |
(DO NOT MERGE) Add debug setting to force hardware special key
Bug: 13988700
Change-Id: If23f8a14097431e76a303a6d6c24e8d9835fb655
(cherry picked from commit 3659c70fc3174b00ac24e105677d7e480596bf56)
Diffstat (limited to 'java/src/com/android/inputmethod/latin/SpecialKeyDetector.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SpecialKeyDetector.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/SpecialKeyDetector.java b/java/src/com/android/inputmethod/latin/SpecialKeyDetector.java index 9d6c69ae7..27b2f5012 100644 --- a/java/src/com/android/inputmethod/latin/SpecialKeyDetector.java +++ b/java/src/com/android/inputmethod/latin/SpecialKeyDetector.java @@ -16,10 +16,18 @@ package com.android.inputmethod.latin; +import android.content.Context; import android.view.KeyEvent; final class SpecialKeyDetector { /** + * Special physical key detector + * @param context a context of this detector. + */ + public SpecialKeyDetector(final Context context) { + } + + /** * Record a down key event. * @param keyEvent a down key event. */ |