diff options
author | Barnaby James <bjames@google.com> | 2014-08-08 22:48:35 -0700 |
---|---|---|
committer | Barnaby James <bjames@google.com> | 2014-08-08 22:48:35 -0700 |
commit | b8850040c447236f071b407b9c116bbd400e1536 (patch) | |
tree | 6da4f5ed990353267dd5531c64d044b2a84571e1 /core/java/android/provider | |
parent | ec64709ce042bcf456f9749e079e5f6981cfbbb9 (diff) | |
download | frameworks_base-b8850040c447236f071b407b9c116bbd400e1536.zip frameworks_base-b8850040c447236f071b407b9c116bbd400e1536.tar.gz frameworks_base-b8850040c447236f071b407b9c116bbd400e1536.tar.bz2 |
Remove constants for VOICE_CONTROL_ZEN_MODE.
Change-Id: I197d68e66d9a1b197e7c35fd140101458cf5bfc7
Diffstat (limited to 'core/java/android/provider')
-rw-r--r-- | core/java/android/provider/Settings.java | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 23b23af..55ba9e9 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -804,33 +804,6 @@ public final class Settings { public static final String ACTION_ZEN_MODE_SETTINGS = "android.settings.ZEN_MODE_SETTINGS"; /** - * Activity Action: Modify zen mode settings. - * <p> - * In some cases, a matching Activity may not exist, so ensure you safeguard against this. - * <p> - * This intent MUST be started using - * {@link android.service.voice.VoiceInteractionSession#startVoiceActivity - * startVoiceActivity}. - * <p> - * To tell which state zen mode should be set to, add the - * {@link #EXTRA_ZEN_MODE_INTERRUPTION_STATE} extra to this Intent with the state specified. - * If there is no extra in this Intent, no changes will be made. - * <p> - * The Activity should verify that - * {@link android.app.Activity#isVoiceInteraction isVoiceInteraction}. - * returns true before modifying the setting. - * <p> - * Input: Nothing. - * <p> - * Output: Nothing. - * - * @hide - */ - @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) - public static final String ACTION_VOICE_CONTROL_ZEN_MODE = - "android.settings.VOICE_CONTROL_ZEN_MODE"; - - /** * Activity Action: Show the regulatory information screen for the device. * <p> * In some cases, a matching Activity may not exist, so ensure you safeguard @@ -971,19 +944,6 @@ public final class Settings { */ public static final String EXTRA_AIRPLANE_MODE_ENABLED = "airplane_mode_enabled"; - /** - * Activity Extra: Modify the zen mode interruption state. - * <p> - * This can be passed as an extra field to the {@link #ACTION_VOICE_CONTROL_ZEN_MODE} - * intent as an integer. The value should be one of - * {@link android.provider.Settings.Global#ZEN_MODE_OFF}, - * {@link android.provider.Settings.Global#ZEN_MODE_IMPORTANT_INTERRUPTIONS}, - * {@link android.provider.Settings.Global#ZEN_MODE_NO_INTERRUPTIONS}. - * - * @hide - */ - public static final String EXTRA_ZEN_MODE_INTERRUPTION_STATE = "zen_mode_interruption_state"; - private static final String JID_RESOURCE_PREFIX = "android"; public static final String AUTHORITY = "settings"; |