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

Unified Diff: components/autofill/content/renderer/renderer_save_password_progress_logger.h

Issue 228263004: Password manager internals page: Introduce logger in renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Squash in little fixes Created 6 years, 8 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
Index: components/autofill/content/renderer/renderer_save_password_progress_logger.h
diff --git a/components/autofill/content/renderer/renderer_save_password_progress_logger.h b/components/autofill/content/renderer/renderer_save_password_progress_logger.h
new file mode 100644
index 0000000000000000000000000000000000000000..cfdf6953a3a47804808435e3850f9b99ae140087
--- /dev/null
+++ b/components/autofill/content/renderer/renderer_save_password_progress_logger.h
@@ -0,0 +1,42 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_RENDERER_BROWSER_SAVE_PASSWORD_PROGRESS_LOGGER_H_
+#define COMPONENTS_AUTOFILL_CONTENT_RENDERER_RENDERER_BROWSER_SAVE_PASSWORD_PROGRESS_LOGGER_H_
+
+#include <string>
+
+#include "components/autofill/core/common/save_password_progress_logger.h"
+
+class PasswordManagerClient;
+
+namespace IPC {
+class Sender;
+}
+
+namespace autofill {
+
+// This is the SavePasswordProgressLogger specialization for the renderer code,
+// where the PasswordManagerClient can needs to be called over IPC.
Ilya Sherman 2014/04/09 21:10:08 nit: "where the PasswordManagerClient can needs to
vabr (Chromium) 2014/04/10 08:51:25 Done.
+class RendererSavePasswordProgressLogger
+ : public autofill::SavePasswordProgressLogger {
+ public:
+ RendererSavePasswordProgressLogger(IPC::Sender* sender, int routing_id);
Ilya Sherman 2014/04/09 21:10:08 nit: Docs, please.
vabr (Chromium) 2014/04/10 08:51:25 Done.
+ virtual ~RendererSavePasswordProgressLogger();
+
+ protected:
+ // SavePasswordProgressLogger:
+ virtual void SendLog(const std::string& log) OVERRIDE;
+
+ private:
+ // Used by SendLog to send the IPC message with logs.
+ IPC::Sender* const sender_;
Ilya Sherman 2014/04/09 21:10:08 nit: Please document lifetime expectations.
vabr (Chromium) 2014/04/10 08:51:25 Done.
+ const int routing_id_;
+
+ DISALLOW_COPY_AND_ASSIGN(RendererSavePasswordProgressLogger);
+};
+
+} // namespace autofill
+
+#endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_RENDERER_BROWSER_SAVE_PASSWORD_PROGRESS_LOGGER_H_

Powered by Google App Engine
This is Rietveld 408576698