Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / components / password_manager / core / browser / password_manager_logger.h
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_PASSWORD_MANAGER_LOGGER_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_LOGGER_H_
7
8 #include <string>
9 #include "base/macros.h"
10
11 namespace password_manager {
12
13 // This interface is used by the password management code to report on progress
14 // of actions like saving a password.
15 class PasswordManagerLogger {
16  public:
17   PasswordManagerLogger() {}
18   virtual ~PasswordManagerLogger() {}
19
20   virtual void LogSavePasswordProgress(const std::string& text) = 0;
21
22  private:
23   DISALLOW_COPY_AND_ASSIGN(PasswordManagerLogger);
24 };
25
26 }  // namespace password_manager
27
28 #endif  // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_LOGGER_H_