diff --git a/src/Privatezilla/Privatezilla/Settings/Edge/AutoFillCredits.cs b/src/Privatezilla/Privatezilla/Settings/Edge/AutoFillCredits.cs deleted file mode 100644 index ebcd1a3..0000000 --- a/src/Privatezilla/Privatezilla/Settings/Edge/AutoFillCredits.cs +++ /dev/null @@ -1,54 +0,0 @@ -using Microsoft.Win32; - -namespace Privatezilla.Setting.Edge -{ - internal class DisableAutoFillCredits : SettingBase - { - private const string EdgeKey = @"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Edge"; - private const int DesiredValue = 0; - - public override string ID() - { - return Properties.Resources.settingsEdeAutoFillCredit; - } - - public override string Info() - { - return Properties.Resources.settingsEdeAutoFillCreditInfo; - } - - public override bool CheckSetting() - { - return !( - RegistryHelper.IntEquals(EdgeKey, "AutofillCreditCardEnabled", DesiredValue) - ); - } - - public override bool DoSetting() - { - try - { - Registry.SetValue(EdgeKey, "AutofillCreditCardEnabled", DesiredValue, RegistryValueKind.DWord); - return true; - } - catch - { } - - return false; - } - - public override bool UndoSetting() - { - try - { - Registry.SetValue(EdgeKey, "AutofillCreditCardEnabled", 1, RegistryValueKind.DWord); - return true; - } - catch - { } - - return false; - } - - } -} \ No newline at end of file