diff options
| author | 2024-01-31 14:42:53 -0800 | |
|---|---|---|
| committer | 2024-02-02 16:00:11 -0800 | |
| commit | 47c147a9b2d9ee9dd2ad7d9bc54f2e4dc1eb8ecd (patch) | |
| tree | 02ac41e9aa9659d92ae65370d29d9713c0c518c1 | |
| parent | 9235b6e57e04462105960f25fa65b961e667f6ef (diff) | |
Expand "E2EE" to "end to end encrypted" in docs
This is to make the term more clear.
Bug: 290696572
Bug: 322979243
Test: Builds
Change-Id: I1fe0a366ca5a775b3b122c06642eba79c2b4f7c1
| -rw-r--r-- | core/java/android/provider/ContactKeysManager.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/java/android/provider/ContactKeysManager.java b/core/java/android/provider/ContactKeysManager.java index bf7e740449fa..d7408bccc3a0 100644 --- a/core/java/android/provider/ContactKeysManager.java +++ b/core/java/android/provider/ContactKeysManager.java @@ -39,7 +39,7 @@ import java.util.List; import java.util.Objects; /** - * ContactKeysManager provides the access to the E2EE contact keys provider. + * ContactKeysManager provides access to the provider of end-to-end encryption contact keys. * It manages two types of keys - {@link ContactKey} of other users' and the owner's keys - * {@link SelfKey}. * <ul> @@ -608,15 +608,15 @@ public final class ContactKeysManager { public @interface VerificationState {} /** - * Unverified state of a contact E2EE key. + * Unverified state of a contact end to end encrypted key. */ public static final int VERIFICATION_STATE_UNVERIFIED = 0; /** - * Failed verification state of a contact E2EE key. + * Failed verification state of a contact end to end encrypted key. */ public static final int VERIFICATION_STATE_VERIFICATION_FAILED = 1; /** - * Verified state of a contact E2EE key. + * Verified state of a contact end to end encrypted key. */ public static final int VERIFICATION_STATE_VERIFIED = 2; @@ -791,7 +791,7 @@ public final class ContactKeysManager { } /** - * A parcelable class encapsulating other users' E2EE contact key. + * A parcelable class encapsulating other users' end to end encrypted contact key. */ public static final class ContactKey implements Parcelable { /** @@ -1056,7 +1056,7 @@ public final class ContactKeysManager { } /** - * A parcelable class encapsulating self E2EE contact key. + * A parcelable class encapsulating self end to end encrypted contact key. */ public static final class SelfKey implements Parcelable { /** |