mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 20:53:25 +00:00
* EC-519 Refactored IDeviceActionService to be split into IFileService and IAutofillManager also some cleanups were made * EC-519 Fix format * EC-519 Fix merge to use the new AutofillHandler
17 lines
454 B
C#
17 lines
454 B
C#
using Bit.Core.Models.View;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IAutofillHandler
|
|
{
|
|
bool AutofillServicesEnabled();
|
|
bool SupportsAutofillService();
|
|
void Autofill(CipherView cipher);
|
|
void CloseAutofill();
|
|
bool AutofillAccessibilityServiceRunning();
|
|
bool AutofillAccessibilityOverlayPermitted();
|
|
bool AutofillServiceEnabled();
|
|
void DisableAutofillService();
|
|
}
|
|
}
|