Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / components / password_manager / core / browser / log_receiver.h
blob4a5b302d92acbae0cdac38559f1e8c4488579a63
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_
8 #include <string>
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.
15 class LogReceiver {
16 public:
17 LogReceiver() {}
18 virtual ~LogReceiver() {}
20 virtual void LogSavePasswordProgress(const std::string& text) = 0;
22 private:
23 DISALLOW_COPY_AND_ASSIGN(LogReceiver);
26 } // namespace password_manager
28 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_