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

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

Issue 1415533013: Fix password manager internals renderer reporting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: All comments addressed Created 5 years, 1 month 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/password_manager/core/browser/stub_password_manager_client.h
diff --git a/components/password_manager/core/browser/stub_password_manager_client.h b/components/password_manager/core/browser/stub_password_manager_client.h
index 440590477161782462f9f83762d5e1466d8d939f..81d07b36fd0c8ba49c2f7201ddc347d2dda48a61 100644
--- a/components/password_manager/core/browser/stub_password_manager_client.h
+++ b/components/password_manager/core/browser/stub_password_manager_client.h
@@ -6,6 +6,7 @@
#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_CLIENT_H_
#include "components/password_manager/core/browser/password_manager_client.h"
+#include "components/password_manager/core/browser/stub_log_manager.h"
namespace password_manager {
@@ -36,6 +37,7 @@ class StubPasswordManagerClient : public PasswordManagerClient {
PasswordStore* GetPasswordStore() const override;
const GURL& GetLastCommittedEntryURL() const override;
const CredentialsFilter* GetStoreResultFilter() const override;
+ const LogManager* GetLogManager() const override;
private:
// This filter does not filter out anything, it is a dummy implementation of
@@ -51,6 +53,7 @@ class StubPasswordManagerClient : public PasswordManagerClient {
};
const PassThroughCredentialsFilter credentials_filter_;
+ StubLogManager log_manager_;
DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerClient);
};

Powered by Google App Engine
This is Rietveld 408576698