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.
5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_
9 #include "base/macros.h"
11 namespace password_manager
{
13 // This interface is used by the password management code to receive and display
14 // logs about progress of actions like saving a password.
18 virtual ~LogReceiver() {}
20 virtual void LogSavePasswordProgress(const std::string
& text
) = 0;
23 DISALLOW_COPY_AND_ASSIGN(LogReceiver
);
26 } // namespace password_manager
28 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_