| Index: chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.h
|
| diff --git a/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.h b/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.h
|
| index 32653014a3e6e327a57c9069d8df596f5e7854b6..2caea7b7784e58341d49c9fefa326746a8883bd2 100644
|
| --- a/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.h
|
| +++ b/chrome/browser/ui/webui/password_manager_internals/password_manager_internals_ui.h
|
| @@ -5,14 +5,13 @@
|
| #ifndef CHROME_BROWSER_UI_WEBUI_PASSWORD_MANAGER_INTERNALS_PASSWORD_MANAGER_INTERNALS_UI_H_
|
| #define CHROME_BROWSER_UI_WEBUI_PASSWORD_MANAGER_INTERNALS_PASSWORD_MANAGER_INTERNALS_UI_H_
|
|
|
| -#include "components/password_manager/core/browser/password_manager_logger.h"
|
| +#include "components/password_manager/core/browser/log_receiver.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| #include "content/public/browser/web_ui_controller.h"
|
|
|
| -class PasswordManagerInternalsUI
|
| - : public content::WebUIController,
|
| - public content::WebContentsObserver,
|
| - public password_manager::PasswordManagerLogger {
|
| +class PasswordManagerInternalsUI : public content::WebUIController,
|
| + public content::WebContentsObserver,
|
| + public password_manager::LogReceiver {
|
| public:
|
| explicit PasswordManagerInternalsUI(content::WebUI* web_ui);
|
| virtual ~PasswordManagerInternalsUI();
|
| @@ -21,7 +20,7 @@ class PasswordManagerInternalsUI
|
| virtual void DidStopLoading(
|
| content::RenderViewHost* render_view_host) OVERRIDE;
|
|
|
| - // PasswordManagerLogger implementation.
|
| + // LogReceiver implementation.
|
| virtual void LogSavePasswordProgress(const std::string& text) OVERRIDE;
|
|
|
| private:
|
|
|