// 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. #ifndef CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORD_ACCESS_AUTH_TIMEOUT_HANDLER_H_ #define CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORD_ACCESS_AUTH_TIMEOUT_HANDLER_H_ #include "base/functional/callback.h" #include "base/time/clock.h" #include "base/time/time.h" #include "base/timer/timer.h" #include "components/password_manager/core/common/password_manager_constants.h" namespace extensions { // This class only records metrics and manages the timer at the end of which the // timeout callback is called. It does not manage authentication. class PasswordAccessAuthTimeoutHandler { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORD_ACCESS_AUTH_TIMEOUT_HANDLER_H_