Package io.cobrowse

Interface CobrowseIO.UnredactionDelegate

Enclosing class:
CobrowseIO

@UiThread public static interface CobrowseIO.UnredactionDelegate
Implement this interface on your delegate to unredact certain views from the frames leaving the device. Every other view specified in CobrowseIO.RedactionDelegate.redactedViews(Activity) and CobrowseIO.Redacted.redactedViews() will be redacted.
  • Method Summary

    Modifier and Type
    Method
    Description
    List<android.view.View>
    unredactedViews(android.app.Activity activity)
    Specify which views should not be redacted before sending.
  • Method Details

    • unredactedViews

      @Nullable List<android.view.View> unredactedViews(@NonNull android.app.Activity activity)
      Specify which views should not be redacted before sending. Will be called repeatedly throughout a session.
      Parameters:
      activity - The Activity that should be redacted.
      Returns:
      The list of View to unredact.