pub trait ICoreWebView2Profile2_Impl: Sized + ICoreWebView2Profile_Impl {
// Required methods
fn ClearBrowsingData(
&self,
datakinds: COREWEBVIEW2_BROWSING_DATA_KINDS,
handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler>
) -> Result<(), Error>;
fn ClearBrowsingDataInTimeRange(
&self,
datakinds: COREWEBVIEW2_BROWSING_DATA_KINDS,
starttime: f64,
endtime: f64,
handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler>
) -> Result<(), Error>;
fn ClearBrowsingDataAll(
&self,
handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler>
) -> Result<(), Error>;
}