diff options
| author | 2015-08-25 12:39:04 -0700 | |
|---|---|---|
| committer | 2015-08-25 12:39:04 -0700 | |
| commit | 47dd08d7fb81ac4fa351111e9d5183cc8cc87d17 (patch) | |
| tree | ea8e8af68171cdf90ae8ee5030bccd1586e511a3 | |
| parent | c04d21fc4ec66d34ca5395db59fadc5e4626bb1c (diff) | |
Teach Pm about the "always ask" link-handling state
Bug 23511867
Change-Id: I74b3c8222a7d22541a96b698edd1a175d378e48f
| -rw-r--r-- | cmds/pm/src/com/android/commands/pm/Pm.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmds/pm/src/com/android/commands/pm/Pm.java b/cmds/pm/src/com/android/commands/pm/Pm.java index 9f385fef0a89..58c3a9ccc89e 100644 --- a/cmds/pm/src/com/android/commands/pm/Pm.java +++ b/cmds/pm/src/com/android/commands/pm/Pm.java @@ -983,6 +983,7 @@ public final class Pm { case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK: return "ask"; case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS: return "always"; case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER: return "never"; + case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK : return "always ask"; } return "Unknown link state: " + state; } |