1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-19 19:04:01 +00:00

PM-19255: interface update

This commit is contained in:
Colton Hurst
2025-05-19 22:02:38 -04:00
parent 8a74764d0f
commit 1126c5f608

View File

@@ -80,8 +80,8 @@ pub struct Factory;
impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Impl {
unsafe fn EXPERIMENTAL_PluginMakeCredential(
&self,
_request: *const ExperimentalWebAuthnPluginOperationRequest,
_response: *mut *mut ExperimentalWebAuthnPluginOperationResponse,
request: *const ExperimentalWebAuthnPluginOperationRequest,
response: *mut *mut ExperimentalWebAuthnPluginOperationResponse,
) -> HRESULT {
util::message(String::from("EXPERIMENTAL_PluginMakeCredential() called"));
HRESULT(0)
@@ -89,8 +89,8 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp
unsafe fn EXPERIMENTAL_PluginGetAssertion(
&self,
_request: *const ExperimentalWebAuthnPluginOperationRequest,
_response: *mut *mut ExperimentalWebAuthnPluginOperationResponse,
request: *const ExperimentalWebAuthnPluginOperationRequest,
response: *mut *mut ExperimentalWebAuthnPluginOperationResponse,
) -> HRESULT {
util::message(String::from("EXPERIMENTAL_PluginGetAssertion() called"));
HRESULT(0)
@@ -98,7 +98,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp
unsafe fn EXPERIMENTAL_PluginCancelOperation(
&self,
_request: *const ExperimentalWebAuthnPluginCancelOperationRequest,
request: *const ExperimentalWebAuthnPluginCancelOperationRequest,
) -> HRESULT {
util::message(String::from("EXPERIMENTAL_PluginCancelOperation() called"));
HRESULT(0)