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

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

Issue 216183008: Password manager internals page: Introduce logger in browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final comments addressed 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
« no previous file with comments | « components/password_manager/core/browser/stub_password_manager_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/password_manager/core/browser/stub_password_manager_client.cc
diff --git a/components/password_manager/core/browser/stub_password_manager_client.cc b/components/password_manager/core/browser/stub_password_manager_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9fd666a32f436936d1550f7e0e0364c526482517
--- /dev/null
+++ b/components/password_manager/core/browser/stub_password_manager_client.cc
@@ -0,0 +1,25 @@
+// 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.
+
+#include "components/password_manager/core/browser/stub_password_manager_client.h"
+
+namespace password_manager {
+
+StubPasswordManagerClient::StubPasswordManagerClient() {}
+
+StubPasswordManagerClient::~StubPasswordManagerClient() {}
+
+void StubPasswordManagerClient::PromptUserToSavePassword(
+ PasswordFormManager* form_to_save) {}
+
+void StubPasswordManagerClient::AuthenticateAutofillAndFillForm(
+ scoped_ptr<autofill::PasswordFormFillData> fill_data) {}
+
+PrefService* StubPasswordManagerClient::GetPrefs() { return NULL; }
+
+PasswordStore* StubPasswordManagerClient::GetPasswordStore() { return NULL; }
+
+PasswordManagerDriver* StubPasswordManagerClient::GetDriver() { return NULL; }
+
+} // namespace password_manager
« no previous file with comments | « components/password_manager/core/browser/stub_password_manager_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698