Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Unified Diff: components/password_manager/core/browser/log_receiver.h

Issue 264793010: Rename PasswordManagerLogger to LogReceiver (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/password_manager.gypi ('k') | components/password_manager/core/browser/log_router.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/password_manager/core/browser/log_receiver.h
diff --git a/components/password_manager/core/browser/password_manager_logger.h b/components/password_manager/core/browser/log_receiver.h
similarity index 42%
rename from components/password_manager/core/browser/password_manager_logger.h
rename to components/password_manager/core/browser/log_receiver.h
index 0347021b888cac52233139cf2e490a9d5bbe93ba..4a5b302d92acbae0cdac38559f1e8c4488579a63 100644
--- a/components/password_manager/core/browser/password_manager_logger.h
+++ b/components/password_manager/core/browser/log_receiver.h
@@ -2,27 +2,27 @@
// 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_PASSWORD_MANAGER_LOGGER_H_
-#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_LOGGER_H_
+#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 report on progress
-// of actions like saving a password.
-class PasswordManagerLogger {
+// 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:
- PasswordManagerLogger() {}
- virtual ~PasswordManagerLogger() {}
+ LogReceiver() {}
+ virtual ~LogReceiver() {}
virtual void LogSavePasswordProgress(const std::string& text) = 0;
private:
- DISALLOW_COPY_AND_ASSIGN(PasswordManagerLogger);
+ DISALLOW_COPY_AND_ASSIGN(LogReceiver);
};
} // namespace password_manager
-#endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_LOGGER_H_
+#endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOG_RECEIVER_H_
« no previous file with comments | « components/password_manager.gypi ('k') | components/password_manager/core/browser/log_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698