updated ProtectionSpaceHttpAuthCredentials doc
This commit is contained in:
parent
9743687ede
commit
e0b384bcf6
@ -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 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///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});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user