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
diff --git a/core/java/android/provider/ContactKeysManager.java b/core/java/android/provider/ContactKeysManager.java
index bf7e740..d7408bc 100644
--- a/core/java/android/provider/ContactKeysManager.java
+++ b/core/java/android/provider/ContactKeysManager.java
@@ -39,7 +39,7 @@
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 @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 @@
}
/**
- * 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 @@
}
/**
- * 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 {
/**