blob: 4a5b302d92acbae0cdac38559f1e8c4488579a63 [file] [log] [blame]
// Copyright 2014 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_LOG_RECEIVER_H_
#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_
#include <string>
#include "base/macros.h"
namespace password_manager {
// This interface is used by the password management code to receive and display
// logs about progress of actions like saving a password.
class LogReceiver {
public:
LogReceiver() {}
virtual ~LogReceiver() {}
virtual void LogSavePasswordProgress(const std::string& text) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(LogReceiver);
};
} // namespace password_manager
#endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_