| Index: components/password_manager/core/browser/stub_log_manager.h
|
| diff --git a/components/password_manager/core/browser/stub_log_manager.h b/components/password_manager/core/browser/stub_log_manager.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ad9242281f5470ba7fa6c610a3483a46e1b30a76
|
| --- /dev/null
|
| +++ b/components/password_manager/core/browser/stub_log_manager.h
|
| @@ -0,0 +1,32 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_LOG_MANAGER_H_
|
| +#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_LOG_MANAGER_H_
|
| +
|
| +#include "components/password_manager/core/browser/log_manager.h"
|
| +
|
| +#include "base/macros.h"
|
| +
|
| +namespace password_manager {
|
| +
|
| +// Use this in tests only, to provide a no-op implementation of LogManager.
|
| +class StubLogManager : public LogManager {
|
| + public:
|
| + StubLogManager() = default;
|
| + ~StubLogManager() override = default;
|
| +
|
| + private:
|
| + // LogManager
|
| + void OnLogRouterAvailabilityChanged(bool router_can_be_used) override;
|
| + void SetSuspended(bool suspended) override;
|
| + void LogSavePasswordProgress(const std::string& text) const override;
|
| + bool IsLoggingActive() const override;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(StubLogManager);
|
| +};
|
| +
|
| +} // namespace password_manager
|
| +
|
| +#endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_LOG_MANAGER_H_
|
|
|