summaryrefslogtreecommitdiffstats
path: root/core/java/android/service
diff options
context:
space:
mode:
authorDharmesh Mokani <mokani@google.com>2014-09-08 09:22:16 -0700
committerDharmesh Mokani <mokani@google.com>2014-09-08 09:22:16 -0700
commit50c290406af81850a5d876754fd2bb4bd29df5d4 (patch)
tree3e7840a83f72760a89608271c39f449e2e1c2251 /core/java/android/service
parenta740b2bf9a492df5301336e2533651fa90e57c6b (diff)
downloadframeworks_base-50c290406af81850a5d876754fd2bb4bd29df5d4.zip
frameworks_base-50c290406af81850a5d876754fd2bb4bd29df5d4.tar.gz
frameworks_base-50c290406af81850a5d876754fd2bb4bd29df5d4.tar.bz2
Remove old methods : AlwaysOnHotwordDetector
Bug: 17389896 Change-Id: I47d0ae3ecad0ce8a74ed65a73309faa541b74a06
Diffstat (limited to 'core/java/android/service')
-rw-r--r--core/java/android/service/voice/AlwaysOnHotwordDetector.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/core/java/android/service/voice/AlwaysOnHotwordDetector.java b/core/java/android/service/voice/AlwaysOnHotwordDetector.java
index 4de5f41..8aa2689 100644
--- a/core/java/android/service/voice/AlwaysOnHotwordDetector.java
+++ b/core/java/android/service/voice/AlwaysOnHotwordDetector.java
@@ -468,19 +468,6 @@ public class AlwaysOnHotwordDetector {
}
/**
- * FIXME: Remove once the prebuilts are updated.
- *
- * @hide
- */
- @Deprecated
- public Intent createIntentToEnroll() {
- if (DBG) Slog.d(TAG, "createIntentToEnroll");
- synchronized (mLock) {
- return getManageIntentLocked(MANAGE_ACTION_ENROLL);
- }
- }
-
- /**
* Creates an intent to start the un-enrollment for the associated keyphrase.
* This intent must be invoked using {@link Activity#startActivityForResult(Intent, int)}.
* Starting re-enrollment is only valid if the keyphrase is already enrolled,
@@ -502,19 +489,6 @@ public class AlwaysOnHotwordDetector {
}
/**
- * FIXME: Remove once the prebuilts are updated.
- *
- * @hide
- */
- @Deprecated
- public Intent createIntentToUnEnroll() {
- if (DBG) Slog.d(TAG, "createIntentToUnEnroll");
- synchronized (mLock) {
- return getManageIntentLocked(MANAGE_ACTION_UN_ENROLL);
- }
- }
-
- /**
* Creates an intent to start the re-enrollment for the associated keyphrase.
* This intent must be invoked using {@link Activity#startActivityForResult(Intent, int)}.
* Starting re-enrollment is only valid if the keyphrase is already enrolled,
@@ -535,19 +509,6 @@ public class AlwaysOnHotwordDetector {
}
}
- /**
- * FIXME: Remove once the prebuilts are updated.
- *
- * @hide
- */
- @Deprecated
- public Intent createIntentToReEnroll() {
- if (DBG) Slog.d(TAG, "createIntentToReEnroll");
- synchronized (mLock) {
- return getManageIntentLocked(MANAGE_ACTION_RE_ENROLL);
- }
- }
-
private Intent getManageIntentLocked(int action) {
if (mAvailability == STATE_INVALID) {
throw new IllegalStateException("getManageIntent called on an invalid detector");