chromium/chrome/browser/extensions/api/passwords_private/password_access_auth_timeout_handler.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/extensions/api/passwords_private/password_access_auth_timeout_handler.h"

#include <utility>

#include "base/functional/bind.h"
#include "base/time/time.h"
#include "components/password_manager/core/common/password_manager_constants.h"

namespace extensions {

PasswordAccessAuthTimeoutHandler::PasswordAccessAuthTimeoutHandler() = default;

PasswordAccessAuthTimeoutHandler::~PasswordAccessAuthTimeoutHandler() = default;

void PasswordAccessAuthTimeoutHandler::Init(TimeoutCallback timeout_call) {}

void PasswordAccessAuthTimeoutHandler::RestartAuthTimer() {}

void PasswordAccessAuthTimeoutHandler::OnUserReauthenticationResult(
    bool authenticated) {}

}  // namespace extensions