Commit e0b384bc authored by Lorenzo Pichilli's avatar Lorenzo Pichilli

updated ProtectionSpaceHttpAuthCredentials doc

parent 9743687e
...@@ -35,8 +35,6 @@ public class InAppWebViewFlutterPlugin implements FlutterPlugin, ActivityAware { ...@@ -35,8 +35,6 @@ public class InAppWebViewFlutterPlugin implements FlutterPlugin, ActivityAware {
public InAppWebViewFlutterPlugin() {} public InAppWebViewFlutterPlugin() {}
public static void registerWith(PluginRegistry.Registrar registrar) { public static void registerWith(PluginRegistry.Registrar registrar) {
Log.d(LOG_TAG, "\n\n\nregisterWith\n\n\n");
final InAppWebViewFlutterPlugin instance = new InAppWebViewFlutterPlugin(); final InAppWebViewFlutterPlugin instance = new InAppWebViewFlutterPlugin();
Shared.registrar = registrar; Shared.registrar = registrar;
instance.onAttachedToEngine( instance.onAttachedToEngine(
......
...@@ -874,8 +874,13 @@ class HttpAuthCredential { ...@@ -874,8 +874,13 @@ class HttpAuthCredential {
} }
} }
///Class that represents a [ProtectionSpace] with all of its [HttpAuthCredential]s.
///It used by [HttpAuthCredentialDatabase.getAllAuthCredentials].
class ProtectionSpaceHttpAuthCredentials { class ProtectionSpaceHttpAuthCredentials {
///The protection space.
ProtectionSpace protectionSpace; ProtectionSpace protectionSpace;
///The list of all its http authentication credentials.
List<HttpAuthCredential> credentials; List<HttpAuthCredential> credentials;
ProtectionSpaceHttpAuthCredentials({this.protectionSpace, this.credentials}); ProtectionSpaceHttpAuthCredentials({this.protectionSpace, this.credentials});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment