Skip to content

Commit 25e1789

Browse files
Apply suggestions from code review
Co-authored-by: David Risney <dave@deletethis.net>
1 parent 4341fb8 commit 25e1789

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

specs/MultiProfile.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ interface ICoreWebView2Profile;
120120
[uuid(C2669A3A-03A9-45E9-97EA-03CD55E5DC03), object, pointer_default(unique)]
121121
interface ICoreWebView2ControllerOptions : IUnknown {
122122
/// `ProfileName` property is to specify a profile name, which is only allowed to contain
123-
/// the following ASCII characters with the maximum length as 64 and will be treated in a
123+
/// the following ASCII characters. It has a maximum length of 64 characters. It is ASCII case insensitive.
124124
/// case insensitive way.
125125
/// alphabet characters: a-z and A-Z
126126
/// digit characters: 0-9
@@ -133,9 +133,9 @@ interface ICoreWebView2ControllerOptions : IUnknown {
133133
[propput] HRESULT ProfileName([in] LPCWSTR value);
134134
135135
/// `InPrivateModeEnabled` property is to enable/disable InPrivate mode.
136-
[propget] HRESULT InPrivateModeEnabled([out, retval] BOOL* enabled);
136+
[propget] HRESULT IsInPrivateModeEnabled([out, retval] BOOL* value);
137137
/// Sets the `InPrivateModeEnabled` property.
138-
[propput] HRESULT InPrivateModeEnabled([in] BOOL enabled);
138+
[propput] HRESULT IsInPrivateModeEnabled([in] BOOL value);
139139
}
140140
141141
[uuid(57FD205C-39D5-4BA1-8E7B-3E53C323EA87), object, pointer_default(unique)]
@@ -164,7 +164,7 @@ interface ICoreWebView2Environment5 : IUnknown
164164
[uuid(6E5CE5F0-16E6-4A05-97D8-4E256B3EB609), object, pointer_default(unique)]
165165
interface ICoreWebView2_7 : IUnknown {
166166
/// The associated `ICoreWebView2Profile` object.
167-
[propget] HRESULT Profile([out, retval] ICoreWebView2Profile** profile);
167+
[propget] HRESULT Profile([out, retval] ICoreWebView2Profile** value);
168168
}
169169
170170
[uuid(3B9A2AF2-E703-4C81-9D25-FCE44312E960), object, pointer_default(unique)]
@@ -173,7 +173,7 @@ interface ICoreWebView2Profile : IUnknown {
173173
[propget] HRESULT ProfileName([out, retval] LPWSTR* value);
174174
175175
/// InPrivate mode is enabled or not.
176-
[propget] HRESULT InPrivateModeEnabled([out, retval] BOOL* enabled);
176+
[propget] HRESULT IsInPrivateModeEnabled([out, retval] BOOL* value);
177177
178178
/// Full path of the profile directory.
179179
[propget] HRESULT ProfilePath([out, retval] LPWSTR* value);

0 commit comments

Comments
 (0)