summaryrefslogtreecommitdiff
path: root/chromium/content/browser/devtools/protocol/webauthn_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/devtools/protocol/webauthn_handler.h')
-rw-r--r--chromium/content/browser/devtools/protocol/webauthn_handler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/content/browser/devtools/protocol/webauthn_handler.h b/chromium/content/browser/devtools/protocol/webauthn_handler.h
index 03e0fafba91..df5733c4840 100644
--- a/chromium/content/browser/devtools/protocol/webauthn_handler.h
+++ b/chromium/content/browser/devtools/protocol/webauthn_handler.h
@@ -14,7 +14,6 @@
namespace content {
class VirtualAuthenticator;
-class VirtualFidoDiscoveryFactory;
namespace protocol {
class WebAuthnHandler : public DevToolsDomainHandler, public WebAuthn::Backend {
@@ -50,6 +49,8 @@ class WebAuthnHandler : public DevToolsDomainHandler, public WebAuthn::Backend {
Response ClearCredentials(const String& in_authenticator_id) override;
Response SetUserVerified(const String& authenticator_id,
bool is_user_verified) override;
+ Response SetAutomaticPresenceSimulation(const String& authenticator_id,
+ bool enabled) override;
private:
// Finds the authenticator with the given |id|. Returns Response::OK() if
@@ -57,7 +58,6 @@ class WebAuthnHandler : public DevToolsDomainHandler, public WebAuthn::Backend {
Response FindAuthenticator(const String& id,
VirtualAuthenticator** out_authenticator);
RenderFrameHostImpl* frame_host_ = nullptr;
- VirtualFidoDiscoveryFactory* virtual_discovery_factory_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(WebAuthnHandler);
};