1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_
6#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_
7
8#include <string>
9#include "base/macros.h"
10
11namespace password_manager {
12
13// This interface is used by the password management code to receive and display
14// logs about progress of actions like saving a password.
15class LogReceiver {
16 public:
17  LogReceiver() {}
18  virtual ~LogReceiver() {}
19
20  virtual void LogSavePasswordProgress(const std::string& text) = 0;
21
22 private:
23  DISALLOW_COPY_AND_ASSIGN(LogReceiver);
24};
25
26}  // namespace password_manager
27
28#endif  // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_
29