#ifndef REMOTING_HOST_WEBAUTHN_REMOTE_WEBAUTHN_DELEGATED_STATE_CHANGE_NOTIFIER_H_
#define REMOTING_HOST_WEBAUTHN_REMOTE_WEBAUTHN_DELEGATED_STATE_CHANGE_NOTIFIER_H_
#include "base/functional/callback.h"
#include "remoting/host/webauthn/remote_webauthn_state_change_notifier.h"
namespace remoting {
class RemoteWebAuthnDelegatedStateChangeNotifier
: public RemoteWebAuthnStateChangeNotifier {
public:
explicit RemoteWebAuthnDelegatedStateChangeNotifier(
const base::RepeatingClosure& notify_state_change);
~RemoteWebAuthnDelegatedStateChangeNotifier() override;
void NotifyStateChange() override;
protected:
base::RepeatingClosure notify_state_change_;
};
}
#endif