2018-09-19 23:08:39 -04:00
|
|
|
using AuthenticationServices;
|
|
|
|
using Foundation;
|
|
|
|
using System;
|
|
|
|
using UIKit;
|
|
|
|
|
|
|
|
namespace Bit.iOS.Autofill
|
|
|
|
{
|
|
|
|
public partial class CredentialProviderViewController : ASCredentialProviderViewController
|
|
|
|
{
|
|
|
|
public CredentialProviderViewController (IntPtr handle) : base (handle)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void ViewDidLoad()
|
2018-09-20 09:29:48 -04:00
|
|
|
{
|
|
|
|
System.Diagnostics.Debug.WriteLine("AUTOFILL view did load");
|
2018-09-19 23:08:39 -04:00
|
|
|
base.ViewDidLoad();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void PrepareCredentialList(ASCredentialServiceIdentifier[] serviceIdentifiers)
|
|
|
|
{
|
2018-09-20 09:29:48 -04:00
|
|
|
System.Diagnostics.Debug.WriteLine("AUTOFILL Got identifiers " + serviceIdentifiers.Length);
|
2018-09-19 23:08:39 -04:00
|
|
|
base.PrepareCredentialList(serviceIdentifiers);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity)
|
|
|
|
{
|
|
|
|
base.ProvideCredentialWithoutUserInteraction(credentialIdentity);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void PrepareInterfaceToProvideCredential(ASPasswordCredentialIdentity credentialIdentity)
|
|
|
|
{
|
|
|
|
base.PrepareInterfaceToProvideCredential(credentialIdentity);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void PrepareInterfaceForExtensionConfiguration()
|
|
|
|
{
|
|
|
|
base.PrepareInterfaceForExtensionConfiguration();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|