@@ -120,7 +120,7 @@ interface ICoreWebView2Profile;
120120[uuid(C2669A3A-03A9-45E9-97EA-03CD55E5DC03), object, pointer_default(unique)]
121121interface 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)]
165165interface 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