From e0b384bcf6a42e06cb384e6bd871f7f0ef6fba01 Mon Sep 17 00:00:00 2001 From: Lorenzo Pichilli Date: Sat, 20 Jun 2020 22:05:16 +0200 Subject: [PATCH] updated ProtectionSpaceHttpAuthCredentials doc --- .../flutter_inappwebview/InAppWebViewFlutterPlugin.java | 2 -- lib/src/types.dart | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/InAppWebViewFlutterPlugin.java b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/InAppWebViewFlutterPlugin.java index 9f4c85df..7bbd4f5d 100755 --- a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/InAppWebViewFlutterPlugin.java +++ b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/InAppWebViewFlutterPlugin.java @@ -35,8 +35,6 @@ public class InAppWebViewFlutterPlugin implements FlutterPlugin, ActivityAware { public InAppWebViewFlutterPlugin() {} public static void registerWith(PluginRegistry.Registrar registrar) { - Log.d(LOG_TAG, "\n\n\nregisterWith\n\n\n"); - final InAppWebViewFlutterPlugin instance = new InAppWebViewFlutterPlugin(); Shared.registrar = registrar; instance.onAttachedToEngine( diff --git a/lib/src/types.dart b/lib/src/types.dart index 938cd2eb..c4f1e85c 100755 --- a/lib/src/types.dart +++ b/lib/src/types.dart @@ -874,8 +874,13 @@ class HttpAuthCredential { } } +///Class that represents a [ProtectionSpace] with all of its [HttpAuthCredential]s. +///It used by [HttpAuthCredentialDatabase.getAllAuthCredentials]. class ProtectionSpaceHttpAuthCredentials { + ///The protection space. ProtectionSpace protectionSpace; + + ///The list of all its http authentication credentials. List credentials; ProtectionSpaceHttpAuthCredentials({this.protectionSpace, this.credentials});