diff options
author | Chris Wren <cwren@android.com> | 2015-08-17 16:52:29 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-08-17 16:52:29 +0000 |
commit | 2299478362bfb5c0608dad083371b404124d9c89 (patch) | |
tree | 53708b0628319d3f7dc9e166962dff4791c7c8c6 /core/java/com | |
parent | 3449530c4815cdef67aa774568bbae0b6178cc15 (diff) | |
parent | 877c22579e18736ee77d106ee2419ae99203bc9b (diff) | |
download | frameworks_base-2299478362bfb5c0608dad083371b404124d9c89.zip frameworks_base-2299478362bfb5c0608dad083371b404124d9c89.tar.gz frameworks_base-2299478362bfb5c0608dad083371b404124d9c89.tar.bz2 |
am 877c2257: Merge "instrument fingerprint service" into mnc-dr-dev
* commit '877c22579e18736ee77d106ee2419ae99203bc9b':
instrument fingerprint service
Diffstat (limited to 'core/java/com')
-rw-r--r-- | core/java/com/android/internal/logging/MetricsLogger.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/java/com/android/internal/logging/MetricsLogger.java b/core/java/com/android/internal/logging/MetricsLogger.java index 55493c3..6da0f63 100644 --- a/core/java/com/android/internal/logging/MetricsLogger.java +++ b/core/java/com/android/internal/logging/MetricsLogger.java @@ -29,6 +29,21 @@ public class MetricsLogger implements MetricsConstants { // Temporary constants go here, to await migration to MetricsConstants. // next value is 239; public static final int ACTION_ASSIST_LONG_PRESS = 239; + public static final int FINGERPRINT_ENROLLING = 240; + public static final int FINGERPRINT_FIND_SENSOR = 241; + public static final int FINGERPRINT_ENROLL_FINISH = 242; + public static final int FINGERPRINT_ENROLL_INTRO = 243; + public static final int FINGERPRINT_ENROLL_ONBOARD = 244; + public static final int FINGERPRINT_ENROLL_SIDECAR = 245; + public static final int FINGERPRINT_ENROLLING_SETUP = 246; + public static final int FINGERPRINT_FIND_SENSOR_SETUP = 247; + public static final int FINGERPRINT_ENROLL_FINISH_SETUP = 248; + public static final int FINGERPRINT_ENROLL_INTRO_SETUP = 249; + public static final int FINGERPRINT_ENROLL_ONBOARD_SETUP = 250; + public static final int ACTION_FINGERPRINT_ENROLL = 251; + public static final int ACTION_FINGERPRINT_AUTH = 252; + public static final int ACTION_FINGERPRINT_DELETE = 253; + public static final int ACTION_FINGERPRINT_RENAME = 254; public static void visible(Context context, int category) throws IllegalArgumentException { if (Build.IS_DEBUGGABLE && category == VIEW_UNKNOWN) { |