Skip to content

Commit c61b885

Browse files
author
Maura Winstanley
committed
change param naming
1 parent 2928e78 commit c61b885

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

specs/Autofill.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ interface ICoreWebView2Settings4 : ICoreWebView2Settings3 {
9999
/// suggestions are shown and clicking on one will populate the fields, new data
100100
/// is saved, and a Save/Update Password prompt is displayed.
101101
/// The default value is `FALSE`.
102-
[propget] HRESULT IsPasswordAutosaveEnabled([out, retval] BOOL* isPasswordAutosaveEnabled);
103-
// Set the IsPasswordAutosaveEnabled property.
104-
[propput] HRESULT IsPasswordAutosaveEnabled([in] BOOL isPasswordAutosaveEnabled);
102+
[propget] HRESULT IsPasswordAutosaveEnabled([out, retval] BOOL* value);
103+
/// Set the IsPasswordAutosaveEnabled property.
104+
[propput] HRESULT IsPasswordAutosaveEnabled([in] BOOL value);
105105
106106
/// IsGeneralAutofillEnabled controls whether autofill for information
107107
/// like names, street and email addresses, phone numbers, and arbitrary input
@@ -110,9 +110,9 @@ interface ICoreWebView2Settings4 : ICoreWebView2Settings3 {
110110
/// is saved. When IsGeneralAutofillEnabled is true, information is saved, suggestions
111111
/// appear and clicking on one will populate the form fields.
112112
/// The default value is `TRUE`.
113-
[propget] HRESULT IsGeneralAutofillEnabled([out, retval] BOOL* isGeneralAutofillEnabled);
113+
[propget] HRESULT IsGeneralAutofillEnabled([out, retval] BOOL* value);
114114
/// Set the IsGeneralAutofillEnabled property.
115-
[propput] HRESULT IsGeneralAutofillEnabled([in] BOOL isGeneralAutofillEnabled);
115+
[propput] HRESULT IsGeneralAutofillEnabled([in] BOOL value);
116116
}
117117
```
118118

0 commit comments

Comments
 (0)