Merge "Fix Activity leak from ContentCapture Context-Updated event."

This commit is contained in:
Ahaan Ugale
2022-01-30 22:21:50 +00:00
committed by Android (Google) Code Review

View File

@@ -291,6 +291,8 @@ public abstract class ContentCaptureSession implements AutoCloseable {
* <p>Typically used to change the context associated with the default session from an activity.
*/
public final void setContentCaptureContext(@Nullable ContentCaptureContext context) {
if (!isContentCaptureEnabled()) return;
mClientContext = context;
updateContentCaptureContext(context);
}