From 6ce67950bd9bfb76cc9726f1ac88356ee86ff6b4 Mon Sep 17 00:00:00 2001 From: Denghui Yu Date: Fri, 1 Jul 2022 15:46:08 +0800 Subject: [PATCH] Add API:CoreWebView2Profile.Erase --- specs/MultiProfile.md | 47 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/specs/MultiProfile.md b/specs/MultiProfile.md index 8bdf97a13..0def824de 100644 --- a/specs/MultiProfile.md +++ b/specs/MultiProfile.md @@ -165,6 +165,28 @@ void ScenarioCookieManagement::DeleteAllCookies() CHECK_FAILURE(m_cookieManager->DeleteAllCookies(); } ``` + +### Delete profile + +```cpp +HRESULT AppWindow::DeleteProfile(ICoreWebView2Controller* controller) +{ + wil::com_ptr coreWebView2; + CHECK_FAILURE(controller->get_CoreWebView2(&coreWebView2)); + auto webview7 = coreWebView2.try_query(); + if (webview7) + { + wil::com_ptr profile; + CHECK_FAILURE(webview7->get_Profile(&profile)); + auto profile2 = profile.try_query; + if (profile2) + { + CHECK_FAILURE(profile2->Delete()); + } + } +} +``` + ## .NET and WinRT ### Create WebView2 with a specific profile, then access the profile property of WebView2 @@ -226,6 +248,17 @@ void DeleteAllCookies() } ``` +```csharp +public DeleteProfile(CoreWebView2Controller controller) +{ + // Get the profile object. + CoreWebView2Profile profile = controller.CoreWebView2.Profile; + + // Delete current profile. + profile.Delete(); +} +``` + # API Details ## Win32 C++ @@ -236,6 +269,7 @@ interface ICoreWebView2Environment5; interface ICoreWebView2_7; interface ICoreWebView2Profile; interface ICoreWebView2Profile2; +interface ICoreWebView2Profile3; /// This interface is used to manage profile options that created by 'CreateCoreWebView2ControllerOptions'. [uuid(C2669A3A-03A9-45E9-97EA-03CD55E5DC03), object, pointer_default(unique)] @@ -328,6 +362,13 @@ interface ICoreWebView2Profile2 : ICoreWebView2Profile { /// See ICoreWebView2CookieManager. [propget] HRESULT CookieManager([out, retval] ICoreWebView2CookieManager** cookieManager); } + +[uuid(1c1ae2cc-d5c2-ffe3-d3e7-7857035d23b7), object, pointer_default(unique)] +interface ICoreWebView2Profile3 : ICoreWebView2Profile2 { + /// Delete the profile completely. All webviews on this profile will be closed and + /// the profile directory on disk will be deleted. + HRESULT Delete(); +} ``` ## .NET and WinRT @@ -379,6 +420,12 @@ namespace Microsoft.Web.WebView2.Core String ProfilePath { get; }; CoreWebView2CookieManager CookieManager { get; }; + + [interface_name("Microsoft.Web.WebView2.Core.ICoreWebView2Profile4")] + { + // ICoreWebView2Profile4 members + void Delete(); + } } } ```