pub trait ICoreWebView2Profile2_Impl: ICoreWebView2Profile_Impl {
    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>; }

Required Methods

Implementors